ssm框架系列-springmvc处理器映射器和适配器
Posted Java知音
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ssm框架系列-springmvc处理器映射器和适配器相关的知识,希望对你有一定的参考价值。
上一篇对搭建ssm框架开发环境有一个整体的介绍,这一篇将对springmvc处理器映射器和适配器有一个更细化的介绍。
(1)非注解的处理器映射器和适配器
处理器映射器
第一种非注解的映射器
<bean class="org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping"/>
另一种非注解的映射器
<bean class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
<!-- 配置Handler --> <bean name="/queryItems.action"
class="com.amuxia.controller.ItemsController" /> <!-- 配置另外一个Handler -->
<!--
处理器映射器 将bean的name作为url进行查找,
需要在配置Handler时指定beanname(就是url) 所有的映射器都实现 HandlerMapping接口。 --> <bean class="org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping" />
也可以多个多个映射器并存,由DispatcherServlet(前端控制器)指定URL被哪个映射器处理,如下:
<!-- 配置Handler -->
<bean id="itemsController" name="/queryItems.action"
class="com.amuxia.ItemsController"/>
<!--
处理器映射器 将bean的name作为url进行查找,
需要在配置Handler时指定URL
-->
<bean class="org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping"/>
<!-- 简单url映射-->
<bean class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
<property name="mappings">
<props>
<!-- 对 itemsController进行url映射-->
<prop key="/queryItems1.action">items1</prop>
<prop key="/queryItems2.action">items2</prop>
</props>
</property>
</bean>
处理器适配器
第一种非注解的适配器
<bean class="org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter" />
(要求编写的Handler实现Controller接口)
public class ItemsController implements Controller{
public ModelAndView handleRequest(HttpServletRequest request, HttpServletResponse response)
throws Exception {
ModelAndView modelAndView = new ModelAndView();
modelAndView.setViewName("view/list");
modelAndView.addObject("name", "张三");
return modelAndView;
}
}
另一种非注解的适配器
<bean class="org.springframework.web.servlet.mvc.HttpRequestHandlerAdapter"/>
(要求编写的Handler实现HttpRequestHandler接口)
public class ItemsController implements HttpRequestHandler{
public void handleRequest(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse) throws ServletException, IOException {
List<Items> itemsList = new ArrayList<Items>();
Items items = new Items();
items.setName("阿木侠");
itemsList.add(items);
httpServletRequest.setAttribute("list",itemsList);
httpServletRequest.getRequestDispatcher("view/list").forward(httpServletRequest,httpServletResponse);
}
}
这里可以使用response设置响应格式,字符编码等
response.setCharacterEncoding("utf-8");
response.setContentType("application/json;charset=utf-8");
(2)基于注解的处理器映射器和适配器
注解映射器
<bean
class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping"/>
注解适配器
<bean
class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter"/>
注解的映射器和注解的适配器必须配对使用,spring对其有一个更简化的配置,可以使用下面的这段代码代替上面的两段配置
<mvc:annotation-driven></mvc:annotation-driven>
使用注解的映射器和注解的适配器,在具体的Java代码实现上有很大的不同,不再需要实现特定的接口,代码风格更加简化。
@Controllerpublic class ItemsController{
@RequestMapping("/items")
public ModelAndView items() throws Exception{
List<Items> itemsList = new ArrayList<Items>();
Items items = new Items();
items.setName("阿木侠");
itemsList.add(items);
ModelAndView modelAndView = new ModelAndView();
modelAndView.addObject("list",itemsList);
modelAndView.setViewName("view/list"); return modelAndView;
}
}
这里使用到了两个注解,也是最最基本的两个注解
@Controller修饰类,用来标识它是一个控制器。
@RequestMapping("")修饰方法或者类,这里表示实现对items方法和url进行映射,一个方法对应一个url。注意这里@RequestMapping("")中的名称一般和方法同名,但不是必须。
最后,还需要在spring容器中加载Handler,指定扫描controller。
<bean class="com.amuxia.controller.ItemsController"></bean>
这里需要对用到的所有的控制器类都需要在spring容器中加载Handler,但我们在实际开发中,所有的Controller一般都会放在某个包下,所以可以使用扫描组件扫描Controller包文件
<context:component-scan base-package="com.amuxia.controller"></context:component-scan>
扩展
注解的处理器映射器和适配器在spring3.1之前和之后使用略有不同,现在一般使用spring3.1之后的,但对之前的需要有一个大概的认识,避免在旧项目中见到之后一脸懵逼。
在spring3.1之前使用(注解映射器)
org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping
在spring3.1之后使用(注解映射器)
org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping
在spring3.1之前使用(注解适配器)
org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter
在spring3.1之后使用(注解适配器)
org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter
以上是关于ssm框架系列-springmvc处理器映射器和适配器的主要内容,如果未能解决你的问题,请参考以下文章