您好,登錄后才能下訂單哦!
這篇文章給大家介紹怎樣分析SpringMVC中的HandlerAdapter,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
DispatcherServlet與HandlerAdapter關系
處理器映射器和處理器適配器的配置方式有三種:
① xml配置
<!-- 配置處理器適配器 SimpleControllerHandlerAdapter-處理器需要實現Controller接口 -->
<bean class="org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter" />
<!-- 配置處理器映射器 BeanNameUrlHandlerMapping-使用bean的名字進行映射 -->
<bean class="org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping" />
<!-- 配置處理器適配器 -->
<bean name="/test.action" class="com.undergrowth.controller.TestController1"></bean>
<bean id="testController1" class="com.undergrowth.controller.TestHttpRequestController"></bean>
②xml配置
<!-- HttpRequestHandlerAdapter-處理器需要實現HttpRequestHandler接口 -->
<bean class="org.springframework.web.servlet.mvc.HttpRequestHandlerAdapter"></bean>
<!-- SimpleUrlHandlerMapping-使用bean的id和路徑進行映射 -->
<bean class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
<property name="mappings">
<props>
<prop key="/test1.action">testController1</prop>
</props>
</property>
</bean>
③通過注解的方式
<!-- 使用注解方式配置處理器映射器和處理器適配器 -->
<mvc:annotation-driven></mvc:annotation-driven>
<context:component-scan base-package="com.undergrowth.controller"></context:component-scan>
來看第一種方式的實現:
/**
* 自定義處理器
* 實現Controller接口
*/
public class TestController1 implements Controller {
@Override
public ModelAndView handleRequest(HttpServletRequest request,
HttpServletResponse response) throws Exception {
//創建數據
List<String> list=new ArrayList<>();
list.add("qq");
list.add("ww");
ModelAndView modelAndView=new ModelAndView();
modelAndView.addObject("list", list);
modelAndView.setViewName("/WEB-INF/test/test.jsp");
return modelAndView;
}
}
第二種方式實現:
/**
* 實現HttpRequestHandler接口
*/
public class TestHttpRequestController implements HttpRequestHandler {
@Override
public void handleRequest(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
// 創建數據
List<String> list = new ArrayList<>();
list.add("qq");
list.add("ww");
list.add("ee");
request.setAttribute("list", list);
request.getRequestDispatcher("/WEB-INF/test/test.jsp").forward(request, response);
}
}
第三種方式實現:
/**
* 測試注解處理器映射器與處理器適配器
*/
@Controller
public class TestAnnotationController {
@RequestMapping("/test3.action")
public ModelAndView test(){
List<String> list=new ArrayList<>();
list.add("qq");
list.add("ww");
list.add("ee");
list.add("rr");
ModelAndView modelAndView=new ModelAndView();
modelAndView.addObject("list", list);
modelAndView.setViewName("/WEB-INF/test/test.jsp");
return modelAndView;
}
}
關于怎樣分析SpringMVC中的HandlerAdapter就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。