我的日常

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

动态微博

查看: 8470|回复: 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:
    . @0 M  A; F9 g& S1 Z0 K, ^) X% \% J5 M
    1. <?xml version="1.0" encoding="UTF-8"?>  8 ?& I$ G) G, u
    2. <beans xmlns="http://www.springframework.org/schema/beans"    % U+ i; B2 d2 D
    3.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"   
      3 e! [4 p: Q0 A" X! Y6 z2 i
    4.     xmlns:p="http://www.springframework.org/schema/p"  7 b6 J/ V4 x4 z) L/ R# J+ V0 v( g( g
    5.     xmlns:aop="http://www.springframework.org/schema/aop"   
      ) s5 y1 ]8 q# G. Y
    6.     xmlns:context="http://www.springframework.org/schema/context"    x) M+ k" I0 x8 y3 X4 L6 y! |
    7.     xmlns:jee="http://www.springframework.org/schema/jee"    Y. Z2 ^/ j6 u3 B6 v8 @' Y
    8.     xmlns:tx="http://www.springframework.org/schema/tx"  
      + ~0 k$ l) c' F2 {1 y
    9.     xsi:schemaLocation="   
      . P7 m0 S7 d4 Z/ ?, H+ l. U: P
    10.         http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.0.xsd  
      4 I9 M9 N% j# z# X3 \: ^
    11.         http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd  ; E$ k: p- q; g/ C# o" U' Y  `! M
    12.         http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd  ) E8 t0 x1 e. G4 y
    13.         http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-4.0.xsd  
      & N/ x  k/ D' Q/ o3 _) \
    14.         http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd"> " p. r  G7 l4 g: a/ u0 ]
    15.    
      * H5 R7 m: m7 X+ h  q& d
    16.     <!-- <mvc:annotation-driven /> -->
      4 e6 d8 w9 i2 r- `, @& |
    17.     <!-- 【配置视图解析器】 -->  
      ; S! |. _; h, S* v5 o2 C( {  L8 w8 z
    18.     <!-- InternalResourceViewResolver会在ModelAndView返回的视图名前加上prefix指定的前缀,再在最后加上suffix指定的后缀 -->  
      ( e3 _1 P( r1 L$ q1 D) W
    19.     <!-- 由于UserController返回的ModelAndView中的视图名是userlist,故该视图解析器将在/WEB-INF/jsp/userlist.jsp处查找视图 -->  8 v6 b3 s7 K: \7 {$ p, j
    20. <!--    <bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">  
        n! g7 U) V7 i* _
    21.         <property name="prefix" value="/WEB-INF/jsp/"/>  " K8 X! l4 P5 H; z6 \! F7 R
    22.         <property name="suffix" value=".jsp"/>
      & i# g) N% d0 ]# b! f" X
    23.     </bean> -->% Z' y7 I# I! D/ [
    24.       s$ |# m+ k- o2 v+ Z( J! O' l. d
    25.     <!--  导入springMvc.xml配置文件 --># N/ X# A' I4 H3 N( \
    26.     <import resource="classpath:config/spring-mvc.xml" />; \" w2 B& d  H! ~
    27.     <!-- 加载数据库配置 -->/ e2 L% U* G3 L6 d6 E' N- J' a' ]
    28.     <context:property-placeholder location="classpath:config/db.properties" />. H% A/ n3 f! q; F4 @
    29.         <!-- 加载数据源 -->$ A  r9 i* z4 c* Y
    30.         <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
      0 t3 O0 ?% s# R. j4 g  N1 l
    31.                 <property name="driverClassName" value="${db.driverClassName}" />
      / a- O! O5 \* t# M. r  S  B1 Y
    32.                 <property name="url" value="${db.url}" />
      - p8 w' F0 c0 w& D1 R1 ]/ u
    33.                 <property name="username" value="${db.username}" /># W: ]1 D3 m# d  Y; ~3 p7 f2 V/ w
    34.                 <property name="password" value="${db.password}" />7 s3 s1 P; K" H1 \: R) Z
    35.                 <property name="maxActive" value="${db.maxActive}" />& x/ t5 n# o( R; Q, d, v
    36.                 <property name="maxIdle" value="${db.maxIdle}" />
      6 h8 }  w1 g  y9 V8 d
    37.                 <property name="minIdle" value="${db.minIdle}" />
      7 z$ A! f3 Y% P1 Y
    38.                 <property name="maxWait" value="${db.maxWait}" />+ Z. _* G3 u% `
    39.         </bean>
      . Q" [- n4 v* P  F/ V3 f
    40.    
      3 u" T' L8 N; t' }8 e
    41.    
      / M" K2 f  m$ {( Y) T
    42.     <bean id="sessionFactory" class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">  " M1 {9 g1 C* a' D* n) U" T" Z
    43.         <property name="dataSource" ref="dataSource" />  5 r6 J+ F+ C4 i6 E
    44.         <property name="mappingDirectoryLocations">  
      9 d+ x: u0 Q1 I: E/ F
    45.                   <list>) T+ ?7 h. J* S& P0 d" J9 \* F
    46.                                 <value>classpath:config/hbm/</value>
      / C$ S2 g& @- }$ ]- d1 f2 q2 g
    47.                         </list>
      3 s( T% k- d8 }; T# _, y
    48.         </property>  
      ( j* y5 s0 p' k* ]$ A* \! g- E
    49.         <property name="hibernateProperties">  - M: W3 N* U- `9 b) X: ]
    50.             <props>
      5 w7 ?+ L' a/ {) \" G
    51.                                 <prop key="hibernate.dialect">${hibernate.dialect}</prop>
      8 S  @, c* E6 J2 I, r& q1 b+ u
    52.                                 <prop key="hibernate.show_sql">${hibernate.show_sql}</prop>: H0 @/ L  f7 T( U/ W
    53.                                 <prop key="hibernate.hbm2ddl.auto">${hibernate.hbm2ddl.auto}</prop>
      / x; o& l( g+ H% F9 q# o% \
    54.                                 <!--<prop key="hibernate.query.factory_class">org.hibernate.hql.ast.ASTQueryTranslatorFactory</prop>-->' z, g3 y7 z& Q( s% H
    55.                                 </props>
      ' A* w! D7 }) R' m+ r" g
    56.         </property>  
      9 t/ y5 ?+ H! Q2 S/ ]
    57.     </bean>7 }' Y1 n: v+ F
    58.    
      . Z/ n- b# H4 t4 v/ N" k0 {; |
    59.     <!-- 声明式事务 -->  
      8 u8 A( x7 ?, r& _4 l0 \
    60.     <bean id="transactionManager" class="org.springframework.orm.hibernate4.HibernateTransactionManager">  $ D/ X2 e7 J6 z; A
    61.         <property name="sessionFactory" ref="sessionFactory" />  1 e* F$ c: N' W% I! T
    62.     </bean>  4 d9 H; d3 a, }$ V7 x& }
    63.          
      # f- x5 y/ I# i1 X3 Z
    64.     <aop:config>  ; L( F+ X0 Q4 e) A. l! w6 J
    65.         <aop:pointcut id="productServiceMethods" expression="execution(* com.service..*.*(..))" />  
      ) Z$ c0 F+ J9 ~5 r2 M& e5 v6 \
    66.         <aop:advisor advice-ref="txAdvice" pointcut-ref="productServiceMethods" />  
      . ?6 w( E- V) U( g" j( h, s& j
    67.     </aop:config>  
      9 S4 B  }3 T5 ?
    68.       + W# y, g+ D& X8 d- C/ `' l. C
    69.     <tx:advice id="txAdvice" transaction-manager="transactionManager">  
      1 c9 l1 K! L; k
    70.         <tx:attributes>  # R% u! m# n/ H9 l1 S, _
    71.                 <tx:method name="save*"   propagation="REQUIRED" />
      6 {/ @6 s8 f+ G9 I# Y' z
    72.                         <tx:method name="add*"    propagation="REQUIRED" />: e7 F  ], e3 r. O6 Y
    73.                         <tx:method name="create*" propagation="REQUIRED" /># B& V8 k2 F& F9 b5 |
    74.                         <tx:method name="insert*" propagation="REQUIRED" />
      * v/ N  B3 m3 o/ \! I; ?+ R  O
    75.                         <tx:method name="update*" propagation="REQUIRED" />% U& g$ q" N4 \4 I: F  r# n
    76.                         <tx:method name="merge*"  propagation="REQUIRED" />' ]7 Z& u. Q/ y3 v& r9 A) F
    77.                         <tx:method name="del*"    propagation="REQUIRED" />
      , o0 o1 y0 J) ~
    78.                         <tx:method name="remove*" propagation="REQUIRED" />, p8 A; K8 S7 B6 o8 [
    79.                         <tx:method name="put*"    propagation="REQUIRED" />7 t7 h, b- c. m% [' r* f
    80.             <tx:method name="*" propagation="SUPPORTS" read-only="true" />  
      8 R7 M1 u( n5 |7 |( u$ ~% Q
    81.         </tx:attributes>    P/ i: c3 m5 U6 d0 _7 Q4 C6 j+ X
    82.     </tx:advice>   [2 T6 X0 M& ]% Q5 y4 P
    83. </beans>  
    复制代码
    spring-mvc.xml:
    ' X: l- J5 V7 f0 P& r
    ) \3 n& V: _( f. {5 k$ t# j0 W4 I9 G
    1. <?xml version="1.0" encoding="UTF-8"?>
      3 w$ v+ l# ?, s- f9 D0 `8 G
    2. <beans xmlns="http://www.springframework.org/schema/beans"
      - F% u. }) K* a, M8 _  V8 `; m
    3.         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"3 q; T9 X  o6 u1 _7 K: m' X, k- ^" J
    4.         xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"
      . c) Z( z! U+ q& V) s9 d0 C
    5.         xmlns:mvc="http://www.springframework.org/schema/mvc"
      2 m) f7 y. p5 ?! a* {  O+ V
    6.         xsi:schemaLocation="http://www.springframework.org/schema/beans  
      ' `7 _( G5 Y$ }/ X; ~" k- z
    7.            http://www.springframework.org/schema/beans/spring-beans-3.0.xsd  / j& f( \1 b4 s! q4 C9 P7 U1 }: |2 e
    8.            http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd  5 ~- {, J) a  e6 B4 L
    9.            http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.0.xsd  
      % _4 G7 Y% [' @1 G, w0 q3 ?! [
    10.            http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd
      . c. r4 H  e- X8 h% S* q
    11.            http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd">
      + R1 B% R: N- g4 h. D: s3 f/ e
    12.     <!-- 自动扫描的包注解  -->
      4 H  w# C4 x+ _% d( n  j- J
    13.         <context:component-scan base-package="com.hoodo.rci" />
      " ^+ G! u+ Z- ]0 R- s+ y# z# u
    14.         <!-- 自动注入  -->
      8 ^4 {4 \/ `) e. Y: m7 k
    15.         <mvc:annotation-driven />
      3 j$ W5 q3 S! I4 m
    16.     <!-- 视图解析器 -->
      7 F* U5 i  I  k* ?
    17.         <bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
      1 m: ?# P) y$ \
    18.                 <property name="prefix" value="/WEB-INF/jsp/" /># ?4 C8 E% g" i: O
    19.                 <property name="suffix" value=".jsp" />, L2 j  \- c( h1 T3 S* g7 s
    20.         </bean>/ x9 r' w! v/ X5 F; ?
    21.         - {1 n( V! Q3 {
    22.      <!-- 异常解析器 -->
      . B# j4 P: `9 {
    23.    <!--  <bean id="simpleMappingExceptionResolver" class="org.springframework.web.servlet.handler.SimpleMappingExceptionResolver"># Z4 N7 Q; `, O# u+ L+ [9 ^# [" d
    24.         <property name="defaultErrorView" value="common/error" />. i7 ?6 O9 f1 w, L1 Q' o( p
    25.    </bean> -->  L0 @; ?* R$ J
    26.      4 i- h9 H9 z: z
    27.      <!-- 拦截器  -->
      ) _) [4 t3 U5 i7 }" _& ?
    28.         <!-- <mvc:interceptors>! X4 j$ {: @+ D9 ~( H( ~! a9 g
    29.             <mvc:interceptor>
      8 v6 K) A, f- w; k& K' P6 _
    30.                <mvc:mapping path="/admin/*/*" />
      ( n; b- N( w& V* n; @
    31.                <bean class="com.filter.CommonInterceptor"></bean>; }4 Z& C& i0 Y% `5 b5 A
    32.             </mvc:interceptor>
      ; d6 z1 ^6 B  l; a$ X: W! j
    33.         </mvc:interceptors> -->
      * P8 h! c( c6 g5 |+ I" ^

    34. 0 i3 r5 ^. t5 ?8 W0 {
    35.         <!-- 上传文件相关的配置 -->( L( h/ i7 s1 b
    36.     <bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">+ H; C$ l# ~" @! V4 N, c
    37.         <property name="defaultEncoding" value="utf-8" />1 }6 T# W! M6 |5 @1 A* o' W( l6 d9 h
    38.                 <property name="maxUploadSize" value="104857600" />' N" l3 r6 K, T. i, n: e
    39.                 <property name="maxInMemorySize" value="4096" />$ V$ ]0 @) b- q  q* |) t9 @" c
    40.         </bean>
      3 o9 H. ]' }8 y! J' h+ i4 z
    41. </beans>
    复制代码
    0 z9 H" t8 r8 Z2 l3 ~$ H" d

    / P; ?1 I1 F* e+ t. S$ f; Y1 o2 y9 J8 y6 V7 z2 p0 r! C
    SpringMVC+hibernate4.3+Spring4.1整合案例

    # P8 W% M& ~/ c6 d" [8 e1 y; \; a
    ( Q8 w3 s; J) q1 k( `, q! s' u

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


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

    1

    主题

    3

    听众

    341

    金钱

    四袋长老

    该用户从未签到

    沙发
    发表于 2016-03-17 21:46:03 |只看该作者
    4 b/ I' L! e. s4 ^: r8 ~( R# ]' j
    下来,学习一下。谢谢
    回复

    使用道具 举报

    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群 科帮网手机客户端
    快速回复 返回顶部 返回列表