我有两个 Struts2 动作。我想在另一个动作中使用一个动作的公共方法。我可以通过new
运算符调用一个动作并调用它的公共方法吗?(为了重用一些常用功能)
public class OneAction extends ActionSupport{
public void doSomeThing(){
// some code
}
public String execute(){
// some code
}
}
public class AnotherAction extends ActionSupport{
public String execute(){
/* is it ok?*/
new OneAction().doSomeThing();
}
}