分类: 系统运维
2012-01-22 15:35:22
Preparable接口的作用是让Action完成一些初始化工作,这些初始化工作是放在Preparable接口的prepare方法中完成的,该方法会在execute方法执行之前得到调用 。
先后顺序:prepare-->getModel -->execute
主要用来存放一些初始化代码
public class LoginAction2 extends ActionSupport implements ModelDriven
{
public void prepare() throws Exception {
System.out.println("prepare invoked!");
}
}