MultiActionController

Spring借鉴Struts的DispatchAction提供了类似功能的MultiActionController。可以实现不同的请求路径对应MultiActionController中的不同方法,这样就可以把相关的操作都在一个类的相关方法中完成。
在使用Spring提供的控制器时,AbstractController和SimpleFormController是应用得最多的。AbstractController是最基本的Controller,可以给予用户最大的灵活性。SimpleFormController则用于典型的表单编辑和提交。在一个需要增,删,改,查的需求中,增加和修改扩展SimpleFormController完成,删除和查询则扩展AbstractController完成。

但是像上面那样完成某一业务对象的增,删,改,查,都属于一类相关的业务。把一类相关的操作分布到不同的类去完成,违返“高内聚”的设计原则。这样四个业务操作需要四个类来完成,造成太多的类文件,难以维护和配置。

所以Spring借鉴Struts的DispatchAction提供了类似功能的MultiActionController。可以实现不同的请求路径对应MultiActionController中的不同方法,这样就可以把相关的操作都在一个类的相关方法中完成。这样使得这个类具有“高内聚”,也利于系统的维护,还避免了重复代码。增加和修改操作的数据验证逻辑是很相似的,使用MultiActionController后就可以让增加和修改操作共用一段数据验证逻辑代码。

下面我们来看具体的使用方法:

MultiActionController有两种使用方式。第一种是你继承MultiActionController,并在子类中指定由MethodNameResolver解析的方法(这种情况下不需要这个delegate参数)。第二种是你定义一个代理对象,由它提供MethodNameResolver解析出来的方法(这种情况下,你必须使用这个配置参数定义代理对象)。

第一种方法是:让你的控制器继承 MultiActionController:
java 代码:

import java.util.HashMap;
import java.util.Map;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.springframework.web.servlet.ModelAndView;
import org.springframework.web.servlet.mvc.multiaction.MultiActionController;

public class WelcomeController extends MultiActionController {

private String successView;

public ModelAndView showList(HttpServletRequest req,
HttpServletResponse resp) {
Map model = new HashMap();
model.put("success", "成功");
return new ModelAndView(this.getSuccessView(), model);
}

public ModelAndView addUser(HttpServletRequest req,
HttpServletResponse resp) {
Map model = new HashMap();
model.put("success", "增加用户成功");
return new ModelAndView(this.getSuccessView(), model);
}

public String getSuccessView() {
return successView;
}

public void setSuccessView(String successView) {
this.successView = successView;
}

}


相应的Spring的配置文件是:

xml 代码
class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">


welcomeController





class="org.springframework.web.servlet.mvc.multiaction.ParameterMethodNameResolver">

method








bbsweb/welcome


class="org.springframework.web.servlet.view.InternalResourceViewResolver">





第二种是使用代理对象:我们可以将所有对应的方法组织在一个代理组件(MultiActionController)中,而不是写在Controller中当请求到来的时候,将委托给这个组建来执行指定的方法,你只要定义MultiActionController的delegate属性即可。

java代码:
import java.util.HashMap;
import java.util.Map;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.springframework.web.servlet.ModelAndView;

public class WelcomeController{

private String successView;

public ModelAndView showList(HttpServletRequest req,
HttpServletResponse resp) {
Map model = new HashMap();
model.put("success", "成功");
return new ModelAndView(this.getSuccessView(), model);
}

public ModelAndView addUser(HttpServletRequest req,
HttpServletResponse resp) {
Map model = new HashMap();
model.put("success", "增加用户成功");
return new ModelAndView(this.getSuccessView(), model);
}

public String getSuccessView() {
return successView;
}

public void setSuccessView(String successView) {
this.successView = successView;
}

}


相应的配置文件:

xml 代码




class="org.springframework.web.servlet.view.InternalResourceViewResolver">






welcomeAction




class="org.springframework.web.servlet.mvc.multiaction.ParameterMethodNameResolver">
method
lshowList







bbsweb/welcome







【MultiActionController】





    推荐阅读