struts.properties struts.action.extension=dhtml struts.objectFactory = spring struts.objectFactory.spring.autoWire = type struts.objectFactory.spring.useClassCache = true #sets the default template type. Either ftl, vm, or jsp struts.ui.theme=xhtml struts.ui.templateDir=template struts.ui.templateSuffix=ftl struts.configuration.xml.reload=false
@Results({ @Result(name = "editUser", type = "redirectAction", location = "user!edit", params = {"userId", "%{userId}"}), @Result(name = "pwdsuccess", type = "stream", params = {"inputName", "resultStream"}) }) public class UserAction extends ActionSupport { //用户id private Long userId; @Autowired UserService userService;