struts2 的ModeDriven Preparable

网友投稿 230 2022-09-13

struts2 的ModeDriven Preparable

paramsPrepareParamsStack在Struts 2.0中是一个很奇妙的interceptor stack,以至于很多人疑问为何不将其设置为默认的interceptor stack。paramsPrepareParamsStack主要解决了ModelDriven和Preparable的配合问题,从字面上理解来说, 这个stack的拦截器调用的顺序为:首先params,然后prepare,接下来modelDriven,最后再params。Struts 2.0的设计上要求modelDriven在params之前调用,而业务中prepare要负责准备model,准备model又需要参数,这就需要在 prepare之前运行params拦截器设置相关参数,这个也就是创建paramsPrepareParamsStack的原因。流程如下:      1. params拦截器首先给action中的相关参数赋值,如id      2. prepare拦截器执行prepare方法,prepare方法中会根据参数,如id,去调用业务逻辑,设置model对象      3. modelDriven拦截器将model对象压入value stack,这里的model对象就是在prepare中创建的      4. params拦截器再将参数赋值给model对象      5. action的业务逻辑执行 依据此stack

下面是一个例子,大家看一下吧

public class UserAction extends ActionSupport implements ModelDriven, Preparable{ private User user; private int id; private UserService service; // user business service public void setId(int id) { this.id = id; } /** * create a new user if none exists, otherwise load the user with the specified id */ public void prepare() throws Exception { if( id==0 ) { user = new User(); } else { user = service.findUserById(id); } } public Object getModel() { return user; } /** * create or update the user and then view the created user */ public String update() { if( id==0 ) { service.create(user); } else { service.update(user); } return "redirect"; } /** * delete the user and go to a default home page */ public String delete() { service.deleteById(id); return "home"; } /** * show the page allowing the user to view the existing data */ public String view() { return "view"; } /** * show the page allowing the user to view the existing data and change the values */ public String edit() { return "input"; } }

在 上述代码中,edit和view都不需要根据id再为界面准备数据,因为prepare方法已经准备好了model,这些方法很简单。对于update方 法,prepare首先会从数据库中加载数据,然后params拦截器会将参数值付给model,在update直接更新就可以,不会出现数据被乱更新的 情况。象Hibernate框架,会判断哪些字段更新了,然后进行更新,性能也不会损失。 通过paramsPrepareParamsStack可以让流程更明确,代码更简洁,也更利于大家的交流。 以上代码参考自《​​​Starting Struts 2​​ 》。

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:特斯拉涨价的背后,“反向营销”还是赎本大剧?
下一篇:02---控制移动底座2
相关文章

 发表评论

暂时没有评论,来抢沙发吧~