码迷,mamicode.com
首页 > 移动开发 > 详细

Spring mvc之SimpleUrlHandlerMapping

时间:2019-05-20 21:29:40      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:mvc   org   新建   prot   simple   one   测试   multi   handler   

1、配置文件如下

<bean id="method" class="com.xx.controller.xxxController" scope="prototype"/>


<!--控制层 方法与发布应用路径映射 所有控制层的方法映射全配置在这里 -->
<bean id="simpleUrlHandlerMapping" class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
<property name="mappings">
<props>
<prop key="/urlDemo">method</prop>
<prop key="xx">xx</prop>

</props>
</property>
</bean>

2、新建一个测试类

技术图片
1 public class xxxController extends MultiActionController {//或者这里可以直接实现Controller接口
2     public ModelAndView method(HttpServletRequest request,     
3             HttpServletResponse response)
4             throws Exception {
5           //......
6          return null;
7 }
8 
9 }    
测试类对应上面配置

这样配置的话我们只要对/urlDemo 这个路径进行拦截,就能进行控制他走那个控制层走什么业务逻辑了!!!

Spring mvc之SimpleUrlHandlerMapping

标签:mvc   org   新建   prot   simple   one   测试   multi   handler   

原文地址:https://www.cnblogs.com/panca/p/10896320.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!