摘要:
public class ModelDrivenAction extends ActionSupport implements ModelDriven<UserBean> { //1,实现ModelDriven接口 //2,实例化泛型对象 private UserBean ub = new UserBean(); //在getModel方法中返回对象 public UserBean getModel() { //返回初始化时ub指向的对象,而不是action结束时ub指向的对象 //在action接受请求时返回对象 return ... 阅读全文
摘要:
1. 通过ActionContext来访问Map类型的request、session、application对象private Map<String,Object> request;request=(Map<String,Object>)ActionContext.getContext().get("request");private Map<String,Object> session;session=ActionContext.getContext().getSession();private Map<String,Object 阅读全文
摘要:
常量可以在struts.xml或struts.properties中配置,建议在struts.xml中配置,两种配置方式如下:在struts.xml文件中配置常量<struts><constant name="struts.action.extension" value="do"/></struts>在struts.properties中配置常量struts.action.extension=do因为常量可以在下面多个配置文件中进行定义,所以我们需要了解struts2加载常量的搜索顺序:struts-default.x 阅读全文