我的日常

登录/注册
您现在的位置:论坛 盖世程序员(我猜到了开头 却没有猜到结局) 盖世程序员 > springMvc配置转发请求三种方法SimpleUrlHandlerMapping
总共48087条微博

动态微博

查看: 2531|回复: 0

springMvc配置转发请求三种方法SimpleUrlHandlerMapping

[复制链接]

326

主题

72

听众

999

金钱

实习版主

该用户从未签到

优秀版主

跳转到指定楼层
楼主
发表于 2014-11-06 13:24:58 |只看该作者 |倒序浏览
  1. <?xml version="1.0" encoding="UTF-8"?>   
    . {! c1 N' V2 `4 L  O$ Q
  2. <beans   4 l$ O# i+ ~/ h& d' H
  3.     xmlns="http://www.springframework.org/schema/beans"  - l- x& ~% T' p, a( y, F
  4.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  , H& n+ I( I2 w6 f) Z! ^* @
  5.     xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd">   2 M) G5 D5 y6 Y
  6.       
    7 d: o( D& \2 O- r$ h" n/ e
  7.    <bean id="loginController" class="com.spring.web.controller.LoginController"/>   
    + r; A5 s6 p. G$ k) F4 m' k' |
  8.      ' q5 a7 {4 F) M* }8 W1 J8 A) x( v
  9.     ( l. P2 I; ?: F% E
  10.    <bean id="handlerMapping" class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">   ! r, ^6 Z6 P9 W7 o
  11.    <!-- 配置方法一   
    1 X' e4 Y# q/ D2 S3 l5 L
  12.      <property name="urlMap">   
    5 G' w" y+ ^* s1 |
  13.          <map>   
    & B7 {) I( j( K3 ?+ ]1 p: h& T4 T
  14.             <entry key="/user/login.do" value-ref="loginController"/>   
    ) W' B3 ~2 s# Z. k& m8 H" A4 ?) ^
  15.          </map>   
    2 s6 w9 k: S/ w( I; G
  16.      </property> -->   $ p  T; w) K, Q
  17.   <!-- 配置方法二   5 \9 r! ~- l! X+ t' E
  18.     <property name="mappings">   / w+ b/ Y/ m$ {2 `3 A
  19.        <bean class="org.springframework.beans.factory.config.PropertiesFactoryBean">   
    % h' G; A  i* g) j4 P' r
  20.            <property name="location">   / n  |9 @- x" @; ?4 x* F  U3 x
  21.               <value>urlMap.properties</value <!-- 此时urlMap.properties文件应放在WebRoot目录下! -->   
    . G7 |# J! c: E. A
  22.            </property>   8 Q! x* j! D# Q! c) l
  23.        </bean>   
    3 L$ f9 M+ A2 k1 Z0 K7 w( M# t
  24.     </property>   
    - Y% j- a  \3 h
  25.    -->   
    8 Q6 T: @8 W% C; _* Y$ F" E
  26.    <!-- 配置方法三 -->   , s) @7 `( d: c) A# A
  27.      <property name="mappings">     S, w" I+ Z* s
  28.         <props>   : T6 q& V- G- O, Z: |4 S
  29.            <prop key="/user/login.do">loginController</prop>   . R; [: ?) V9 R5 p
  30.         </props>     _, K& u: o0 o6 F5 |
  31.      </property></bean>   
    % A' D3 f! T4 M
  32.       I5 c9 _+ I1 P0 ?' E( r# D
  33.    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">   
    & }# ^( v0 b' w- c5 e+ r3 c
  34.      <property name="prefix"><value>/WEB-INF/jsp/</value></property>   
    , ~: l- p3 ^3 `3 \8 r. {
  35.      <property name="suffix"><value>.jsp</value></property>   5 d9 \+ W( `) l. |" h
  36.      <property name="viewClass">   
    / K9 v) b9 P! N, c' L  W. l
  37.        <value>   % g& i9 P  w- w; N6 E2 F+ ]
  38.         org.springframework.web.servlet.view.JstlView   0 ^; K6 I- g7 f& V; C
  39.        </value>   
    ! z) W9 Y# X! v& [1 m; a
  40.      </property>   
    8 g0 r5 Z9 x/ z2 r( q! m5 Y
  41.    </bean>
    9 X& S( ?/ T5 F1 g/ S& I) ^( N
  42. </beans>  # r& Q! l' Y" j
复制代码
springMvc简单的登录程序小项目 :http://www.52itstyle.top/thread-2737-1-1.html
% P  J5 G* v( a( ~* R

科帮网 1、本主题所有言论和图片纯属会员个人意见,与本社区立场无关
2、本站所有主题由该帖子作者发表,该帖子作者与科帮网享有帖子相关版权
3、其他单位或个人使用、转载或引用本文时必须同时征得该帖子作者和科帮网的同意
4、帖子作者须承担一切因本文发表而直接或间接导致的民事或刑事法律责任
5、本帖部分内容转载自其它媒体,但并不代表本站赞同其观点和对其真实性负责
6、如本帖侵犯到任何版权问题,请立即告知本站,本站将及时予与删除并致以最深的歉意
7、科帮网管理员和版主有权不事先通知发贴者而删除本文


JAVA爱好者①群:JAVA爱好者① JAVA爱好者②群:JAVA爱好者② JAVA爱好者③ : JAVA爱好者③

本帖被以下淘专辑推荐:

快速回复
您需要登录后才可以回帖 登录 | 立即注册

   

关闭

站长推荐上一条 /1 下一条

发布主题 快速回复 返回列表 联系我们 官方QQ群 科帮网手机客户端
快速回复 返回顶部 返回列表