我的日常

登录/注册
您现在的位置:论坛 盖世程序员(我猜到了开头 却没有猜到结局) 项目源码 > SpringMVC+hibernate4.3+Spring4.1整合案例
总共48086条微博

动态微博

查看: 8427|回复: 10

SpringMVC+hibernate4.3+Spring4.1整合案例

[复制链接]
admin    

1244

主题

544

听众

1万

金钱

管理员

  • TA的每日心情

    2021-2-2 11:21
  • 签到天数: 36 天

    [LV.5]常住居民I

    管理员

    跳转到指定楼层
    楼主
    发表于 2015-04-15 20:59:36 |只看该作者 |倒序浏览
    springMVC+hibernate4.3+Spring4.1整合案例spring.xml:' k, j( N- W& I3 s  M
    . b& U# \+ n3 i+ H- I
    1. <?xml version="1.0" encoding="UTF-8"?>  
      7 h  c* R' Q2 b) s$ u
    2. <beans xmlns="http://www.springframework.org/schema/beans"   
      * t9 X% B' k, L' V+ w
    3.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"     ~5 g& x/ d/ K$ ]! ?+ P
    4.     xmlns:p="http://www.springframework.org/schema/p"  ; M. A. r( S. u8 G3 F
    5.     xmlns:aop="http://www.springframework.org/schema/aop"   
      / e, I% U$ \9 I$ R& K3 z0 y$ S
    6.     xmlns:context="http://www.springframework.org/schema/context"  
      " P8 |- a/ M- ~
    7.     xmlns:jee="http://www.springframework.org/schema/jee"  
      $ l, F$ {7 I, Z- l# A
    8.     xmlns:tx="http://www.springframework.org/schema/tx"  
      ( D6 E1 v8 ]5 t4 u
    9.     xsi:schemaLocation="   
      / ?3 F- g* k, C3 c5 \6 }
    10.         http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.0.xsd  
      8 T$ L2 R' r. w6 L  Z7 r  i& z* |
    11.         http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd  : S# T7 b4 p4 H# p6 Z
    12.         http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd  ; o* v8 w8 b/ w" h
    13.         http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-4.0.xsd  0 G% Y; n0 l, G" r
    14.         http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd"> : c  Y. K6 P( c$ _) b7 I, V
    15.    
      6 o8 W/ c3 f4 v3 N4 r% V0 z
    16.     <!-- <mvc:annotation-driven /> -->
      / s3 H& [' V- B. B
    17.     <!-- 【配置视图解析器】 -->  + g; l. |- G! Q0 g4 _# b$ n. t
    18.     <!-- InternalResourceViewResolver会在ModelAndView返回的视图名前加上prefix指定的前缀,再在最后加上suffix指定的后缀 -->  2 b. E3 ~& U  [0 l0 A
    19.     <!-- 由于UserController返回的ModelAndView中的视图名是userlist,故该视图解析器将在/WEB-INF/jsp/userlist.jsp处查找视图 -->  $ z* p: N1 G8 r! L) f) @& M, E
    20. <!--    <bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">  / Y. {7 W4 r8 |7 E& P0 q- `5 N
    21.         <property name="prefix" value="/WEB-INF/jsp/"/>  
      ) u1 K" g7 N# U5 x. T
    22.         <property name="suffix" value=".jsp"/>
      & W0 i* Q+ `$ G9 i0 u
    23.     </bean> -->
      $ J) |# C- j+ ?7 O3 N' P3 ]
    24.     8 n* {1 K5 l: Q, u( u+ a- m: J2 P& P
    25.     <!--  导入springMvc.xml配置文件 -->) L) F4 Q+ @7 {' V4 u" c2 ^% D0 p
    26.     <import resource="classpath:config/spring-mvc.xml" />
      # G+ _8 W; n" g' j$ ?' b3 g. O
    27.     <!-- 加载数据库配置 -->
      & i; G8 ~- g: L8 ?+ A/ W  o
    28.     <context:property-placeholder location="classpath:config/db.properties" />
      ' |/ S: e+ N9 O# K: V
    29.         <!-- 加载数据源 -->& T: b- ~5 r7 p6 B
    30.         <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
      $ y9 i% ?. h% r4 Z0 Z, _
    31.                 <property name="driverClassName" value="${db.driverClassName}" />
      $ e( N* [7 Y8 ?+ I
    32.                 <property name="url" value="${db.url}" />2 i6 y! R5 M9 e% t! Z/ A
    33.                 <property name="username" value="${db.username}" />
      0 w' n2 j- b% F) I  X: l
    34.                 <property name="password" value="${db.password}" />; Z& ]$ r' a1 V. s) \
    35.                 <property name="maxActive" value="${db.maxActive}" />
      . ~* c, J6 _4 G
    36.                 <property name="maxIdle" value="${db.maxIdle}" />
      8 Z6 D# U! ]5 ]* N9 e# I8 d9 W: t
    37.                 <property name="minIdle" value="${db.minIdle}" />% V) h/ x9 `( W& q7 M! Q: t8 u
    38.                 <property name="maxWait" value="${db.maxWait}" />. n9 h4 B* H- O+ x; B3 A
    39.         </bean>, r. G1 r4 T; z
    40.     * ^5 i" j0 C3 w& \6 e! F2 V
    41.     9 W% Y% K0 M0 t! t8 ?8 @6 g! u' ?$ t
    42.     <bean id="sessionFactory" class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">  
      5 R, i; p! H$ c7 O4 e* a9 X
    43.         <property name="dataSource" ref="dataSource" />  
      ) f* h, l0 J2 E, l
    44.         <property name="mappingDirectoryLocations">  8 [7 O3 ?, p) o1 ?, |7 ~& U
    45.                   <list>
      ' [% N/ J( o; L. P8 D$ j' u. j% l
    46.                                 <value>classpath:config/hbm/</value>
      / v/ c5 v- n8 N
    47.                         </list>5 A5 \. ^( |& }
    48.         </property>  % ]8 e8 S/ L; g- o& H  u
    49.         <property name="hibernateProperties">  ' r9 P4 e) ?+ j8 {( |/ z
    50.             <props>7 V9 `# ~; Y- |  p9 d2 _9 ]3 `
    51.                                 <prop key="hibernate.dialect">${hibernate.dialect}</prop>' h' q! L7 @2 D9 A
    52.                                 <prop key="hibernate.show_sql">${hibernate.show_sql}</prop>% Y* n4 F; |3 I8 x
    53.                                 <prop key="hibernate.hbm2ddl.auto">${hibernate.hbm2ddl.auto}</prop>
      , z- r( B! K  p+ v# D1 C+ _( V
    54.                                 <!--<prop key="hibernate.query.factory_class">org.hibernate.hql.ast.ASTQueryTranslatorFactory</prop>-->
      3 L' ~  i: V  \! S
    55.                                 </props> ) y0 b3 ]7 x& p* `: }/ e3 s
    56.         </property>  & k/ ]5 V( ]# n4 W/ F, R
    57.     </bean>
      + b; H7 ?2 Q1 c1 b
    58.     2 W. T3 S$ K) S( ^. o
    59.     <!-- 声明式事务 -->  
      / P; M  ]3 Y; x5 F& u
    60.     <bean id="transactionManager" class="org.springframework.orm.hibernate4.HibernateTransactionManager">  
      ) r- r! X. P2 w' M! g
    61.         <property name="sessionFactory" ref="sessionFactory" />  5 B5 J. a2 D5 Y8 q
    62.     </bean>  5 o4 E, `) Z) W3 k% T9 C
    63.           * o. F7 R& w/ n0 s: B! T7 [1 J9 s# Q
    64.     <aop:config>  
        v) O* h- F6 y* L8 y7 p4 l
    65.         <aop:pointcut id="productServiceMethods" expression="execution(* com.service..*.*(..))" />  * W2 E) b/ w% l) w, Y2 u
    66.         <aop:advisor advice-ref="txAdvice" pointcut-ref="productServiceMethods" />  : }4 ~7 _3 P" V3 P7 Z& j
    67.     </aop:config>  7 y; b) Y7 d0 g8 o
    68.       
      7 Z8 u" @) l7 {: ~
    69.     <tx:advice id="txAdvice" transaction-manager="transactionManager">  . Y/ j, E) o3 X9 W
    70.         <tx:attributes>  " K* }- Z' M1 Y- r2 {4 x* C7 k1 c
    71.                 <tx:method name="save*"   propagation="REQUIRED" />8 G5 X* U7 v9 n9 a1 [+ f/ X6 I
    72.                         <tx:method name="add*"    propagation="REQUIRED" />
      5 z& f: o7 p8 P% v& z/ B$ ~
    73.                         <tx:method name="create*" propagation="REQUIRED" />
      + f0 r/ M% Q; q- F5 H
    74.                         <tx:method name="insert*" propagation="REQUIRED" />
      ! c, C0 `' f# ^% L
    75.                         <tx:method name="update*" propagation="REQUIRED" />
      ; H* s5 S1 `+ _& X) u, L/ W8 g
    76.                         <tx:method name="merge*"  propagation="REQUIRED" />0 i- o6 I: k! D9 n5 R+ k
    77.                         <tx:method name="del*"    propagation="REQUIRED" />2 V( `) A4 M2 r' I" z$ ]4 ^+ Q9 a
    78.                         <tx:method name="remove*" propagation="REQUIRED" />: Z0 w- |) S0 a1 t: I' ~' m
    79.                         <tx:method name="put*"    propagation="REQUIRED" />
      ) K3 T( Y( N9 y# S8 W) J' \
    80.             <tx:method name="*" propagation="SUPPORTS" read-only="true" />  ; F1 v) ^) p+ G2 r, ~0 B8 X
    81.         </tx:attributes>  
      / }: K6 Y7 l1 @  T) X  F
    82.     </tx:advice> ) }' t% ^2 [0 h6 U
    83. </beans>  
    复制代码
    spring-mvc.xml:
    / C% |; z) H0 \- L, M) R8 T
    % {/ D( \  e, A+ c6 F/ V
    1. <?xml version="1.0" encoding="UTF-8"?>
      $ C9 _. }, h3 L  u' K
    2. <beans xmlns="http://www.springframework.org/schema/beans"
      ; x5 x- n. x, p' a! U
    3.         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"* ]/ {" `% T2 [4 |: T
    4.         xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"
      ' Q! |2 f7 N% L& P: U* Z3 @/ }% h
    5.         xmlns:mvc="http://www.springframework.org/schema/mvc"/ m; D: R7 S; b2 y- D
    6.         xsi:schemaLocation="http://www.springframework.org/schema/beans  
      2 o6 c$ P: I- g. U) n* O* ]
    7.            http://www.springframework.org/schema/beans/spring-beans-3.0.xsd  
      ' R  H! K+ o' @3 `9 }# }7 d  n! |
    8.            http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd  
      ' V+ s% I2 k* e  \- W! ]+ j/ p
    9.            http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.0.xsd    S4 A8 l, J  @) O5 r; j
    10.            http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd- h8 c' P+ K/ ?* ~8 x. g/ t
    11.            http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd">
      " R: G& C  Y& I  [' P6 v
    12.     <!-- 自动扫描的包注解  -->) y" x) v; ?- O/ n0 e' g7 V& p
    13.         <context:component-scan base-package="com.hoodo.rci" />
      , x2 p* o6 ?1 F% R8 u( Z  y5 |% ?+ u# ~
    14.         <!-- 自动注入  -->/ O7 _8 j! E8 f2 o- _
    15.         <mvc:annotation-driven />. y& ~9 q  k& f7 E1 B" H6 S7 P9 h
    16.     <!-- 视图解析器 -->  l! _: U4 Q: u1 i( `
    17.         <bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">9 A+ J, X) b6 S7 @; N
    18.                 <property name="prefix" value="/WEB-INF/jsp/" />/ D. \. p% O2 I8 r) T9 i# A: p" g
    19.                 <property name="suffix" value=".jsp" />' G# e5 ?! M- x9 w4 y! c) e' {8 Q
    20.         </bean>
      5 C% M7 o$ u' t7 w
    21.         # E6 y  a$ Q9 L
    22.      <!-- 异常解析器 -->% h, k2 o  M3 `# S
    23.    <!--  <bean id="simpleMappingExceptionResolver" class="org.springframework.web.servlet.handler.SimpleMappingExceptionResolver">
      " }9 [- r9 ^, h5 ^6 Q4 l7 H& z0 T( ^
    24.         <property name="defaultErrorView" value="common/error" />4 w- l3 _% @  @& A% Y
    25.    </bean> -->
      0 A& N. T8 k1 {" B
    26.      
      2 j3 F2 k1 G% v1 T8 \0 E
    27.      <!-- 拦截器  -->! t% @5 {3 |% K( F  ]7 ^4 k, V
    28.         <!-- <mvc:interceptors>
      " Q% Y2 t" v2 P, l
    29.             <mvc:interceptor>3 E: x" R* t  v5 {+ _
    30.                <mvc:mapping path="/admin/*/*" />" P, ^2 W- i( X
    31.                <bean class="com.filter.CommonInterceptor"></bean>8 ?; y; {0 f5 L- z4 w3 @  [( U
    32.             </mvc:interceptor>
      - t$ S% t! u4 W2 N  D. n/ ^- b
    33.         </mvc:interceptors> -->! i2 w$ g( @% q$ a; s" b4 c
    34. ; K6 t3 L& f# `
    35.         <!-- 上传文件相关的配置 -->" y/ S4 O# f+ b8 F0 C
    36.     <bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
      $ l3 E+ U% R( g9 b, f' N
    37.         <property name="defaultEncoding" value="utf-8" />
      2 |+ j3 T8 ^$ _2 Z$ k$ M( |9 k
    38.                 <property name="maxUploadSize" value="104857600" />
      4 n3 l9 N$ s; n, `' y9 {
    39.                 <property name="maxInMemorySize" value="4096" />
      . k. w8 D% b! H# D/ D7 k( S
    40.         </bean>
      6 O/ ^/ S1 I" u
    41. </beans>
    复制代码

    9 {! z* ^! y( K, ?( B" z  D! p$ \4 \1 o8 ^. V# D
    * @% x: p7 x5 y
    SpringMVC+hibernate4.3+Spring4.1整合案例

    ! J& f2 ~7 [7 p0 d+ H4 [8 u: Z& j

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


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

    1

    主题

    3

    听众

    341

    金钱

    四袋长老

    该用户从未签到

    沙发
    发表于 2016-03-17 21:46:03 |只看该作者
    # h- l2 K( c% U& H2 ~
    下来,学习一下。谢谢
    回复

    使用道具 举报

    woniu 实名认证   

    2

    主题

    0

    听众

    330

    金钱

    四袋长老

    该用户从未签到

    板凳
    发表于 2016-04-12 11:49:21 |只看该作者
    这个项目太棒勒!下下来学习下!
    回复

    使用道具 举报

    2

    主题

    0

    听众

    289

    金钱

    五袋长老

    该用户从未签到

    地板
    发表于 2016-05-05 16:00:00 |只看该作者
    下来,学习一下。谢谢
    回复

    使用道具 举报

    2

    主题

    0

    听众

    289

    金钱

    五袋长老

    该用户从未签到

    5#
    发表于 2016-05-05 16:00:11 |只看该作者
    下来,学习一下。谢谢
    回复

    使用道具 举报

    2

    主题

    0

    听众

    289

    金钱

    五袋长老

    该用户从未签到

    6#
    发表于 2016-05-05 16:00:44 |只看该作者
    感谢分享   ,
    回复

    使用道具 举报

    1

    主题

    0

    听众

    80

    金钱

    三袋弟子

    该用户从未签到

    7#
    发表于 2016-06-22 09:26:53 |只看该作者
    好资料,可以好好学习下
    回复

    使用道具 举报

    4

    主题

    0

    听众

    302

    金钱

    四袋长老

    该用户从未签到

    8#
    发表于 2016-09-26 16:41:42 |只看该作者
    看看。学习学习。谢谢楼主
    回复

    使用道具 举报

    46

    主题

    1

    听众

    584

    金钱

    三袋弟子

    该用户从未签到

    80后

    9#
    发表于 2016-10-30 11:15:32 |只看该作者
    SpringMVC+hibernate4.3+Spring4.1整合案例 [复制链接]
    回复

    使用道具 举报

    5

    主题

    0

    听众

    316

    金钱

    四袋长老

    该用户从未签到

    10#
    发表于 2017-08-14 08:49:01 |只看该作者
    不错不错不错,学习一下
    回复

    使用道具 举报

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

       

    关闭

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

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