我的日常

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

动态微博

查看: 8499|回复: 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:1 f% t7 d, R  w, K2 b; Q

    ) S6 I* N: j9 A6 Z
    1. <?xml version="1.0" encoding="UTF-8"?>  
      6 H$ t3 Z, k6 y4 F9 L) ?( L6 b
    2. <beans xmlns="http://www.springframework.org/schema/beans"   
      2 M9 }( s$ R% O: o& N- U) c3 S3 P
    3.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"   ( J4 H  K' {. s  ]
    4.     xmlns:p="http://www.springframework.org/schema/p"  + B9 `+ J" m; [2 d! N7 |
    5.     xmlns:aop="http://www.springframework.org/schema/aop"   " B" F( y6 |' Q; n2 I% ~& d
    6.     xmlns:context="http://www.springframework.org/schema/context"  
      ( V( ~* M: C) S4 M: b
    7.     xmlns:jee="http://www.springframework.org/schema/jee"  , f, e9 w5 y3 i, u
    8.     xmlns:tx="http://www.springframework.org/schema/tx"  , ^6 a5 [" o$ \/ w* R
    9.     xsi:schemaLocation="   
      ; _  e% v3 [6 [
    10.         http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.0.xsd  
      / g' F4 G. x, Q$ o! M2 E6 O
    11.         http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd  0 \( [: f8 {6 l5 Z6 ]9 M4 [6 I
    12.         http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd  
      , \  U& J/ C# P5 ?: c
    13.         http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-4.0.xsd  ! Q! j3 K3 W( E, j2 t
    14.         http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd">
      1 H/ v+ \1 K' i, G" X. j' ?) t1 h
    15.    
      8 T% u" M& s) K; Z: s8 h
    16.     <!-- <mvc:annotation-driven /> -->
      / \2 f, e# {4 V/ g9 U9 q
    17.     <!-- 【配置视图解析器】 -->  
      $ v* Z' w2 S! h6 ]
    18.     <!-- InternalResourceViewResolver会在ModelAndView返回的视图名前加上prefix指定的前缀,再在最后加上suffix指定的后缀 -->  
      + n( ~1 i& R0 o: V$ H2 N
    19.     <!-- 由于UserController返回的ModelAndView中的视图名是userlist,故该视图解析器将在/WEB-INF/jsp/userlist.jsp处查找视图 -->  $ T  T- }! m# p5 }% y; |
    20. <!--    <bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">  # ]1 c. }) C4 e1 d6 F4 D" p
    21.         <property name="prefix" value="/WEB-INF/jsp/"/>  
      " I; U0 j7 e% q& n8 A( }
    22.         <property name="suffix" value=".jsp"/>& x+ K8 e3 s0 o: m$ I
    23.     </bean> -->
      5 ?7 B( K' Q! m4 Z5 e8 M
    24.     : T4 f" q( e0 h
    25.     <!--  导入springMvc.xml配置文件 -->& f  h  _  G+ s4 o% @4 r5 A2 V
    26.     <import resource="classpath:config/spring-mvc.xml" />
      ; ~/ }* H9 e4 U( w# [
    27.     <!-- 加载数据库配置 -->
      $ d) f8 ^; m% k; X
    28.     <context:property-placeholder location="classpath:config/db.properties" />
      7 V; N  y5 W' x7 U( t
    29.         <!-- 加载数据源 -->
      . X5 N: B# x3 u8 u  w& {! ~" p) H7 X
    30.         <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
      * S; o1 M4 G/ {' _5 l1 H- {
    31.                 <property name="driverClassName" value="${db.driverClassName}" />6 s% [; @8 q! P) j4 y, [0 V; b3 a
    32.                 <property name="url" value="${db.url}" />" U6 A" E) j& J6 @# L6 k
    33.                 <property name="username" value="${db.username}" />
      / a. W& R) \3 ^* F: \
    34.                 <property name="password" value="${db.password}" />
      ( z  S; y+ ~; ~' |) c* z$ U/ c  ?
    35.                 <property name="maxActive" value="${db.maxActive}" />
      3 R% C8 ]) U" b8 x
    36.                 <property name="maxIdle" value="${db.maxIdle}" />
      1 R! c/ x. @8 D
    37.                 <property name="minIdle" value="${db.minIdle}" />
      3 |5 c0 D  F' u1 D- ~2 i0 V- [) z; U
    38.                 <property name="maxWait" value="${db.maxWait}" />% b) n' k4 f/ ]& N
    39.         </bean>0 ^  L; q9 h2 l( ]7 e5 F# J
    40.    
      % V; D: {  I# i' J) P
    41.    
      6 z/ o: W9 w9 n+ d- @" k
    42.     <bean id="sessionFactory" class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">  1 b7 L7 r' v% m; r. a
    43.         <property name="dataSource" ref="dataSource" />  3 s, q' O6 }9 P3 I- V
    44.         <property name="mappingDirectoryLocations">  3 H% j- [7 b* v4 \) R8 j/ Y
    45.                   <list>( L0 e3 T# }& o- O% J1 {
    46.                                 <value>classpath:config/hbm/</value>) w; a" h3 f: F) {$ l# a7 ?7 I1 B! A
    47.                         </list>. O5 X$ b) ~9 C+ `8 `
    48.         </property>  
      3 ]8 K: a; ]6 u$ o) P- B
    49.         <property name="hibernateProperties">  
      # ^; K( k+ g7 {- p3 ?" N
    50.             <props>
      2 q5 n. Q. T1 [  v# B9 y
    51.                                 <prop key="hibernate.dialect">${hibernate.dialect}</prop>" e6 Z; z$ U! T
    52.                                 <prop key="hibernate.show_sql">${hibernate.show_sql}</prop>
      " q4 S! P/ l- H9 O. t; }
    53.                                 <prop key="hibernate.hbm2ddl.auto">${hibernate.hbm2ddl.auto}</prop>
      1 |9 c5 h3 e! _
    54.                                 <!--<prop key="hibernate.query.factory_class">org.hibernate.hql.ast.ASTQueryTranslatorFactory</prop>-->; M4 y1 g6 C" u& D6 c
    55.                                 </props> 6 P6 @' `2 K4 _% ?- w3 s/ K, S
    56.         </property>  
      ' q: Z; s+ Z  l% @+ k' f: @2 D( b
    57.     </bean>
        y4 ]% E; Q7 Z) z+ d
    58.     * _2 t7 P5 X$ ^4 N/ U) P0 |
    59.     <!-- 声明式事务 -->  5 B3 T, @$ Y3 u% f0 Y% N1 x
    60.     <bean id="transactionManager" class="org.springframework.orm.hibernate4.HibernateTransactionManager">  2 L3 j8 M4 M. X1 x5 e- U: z
    61.         <property name="sessionFactory" ref="sessionFactory" />  
      " P- j/ v3 W; c9 c9 D1 E0 j3 P
    62.     </bean>  1 u& p1 E4 g1 D* m/ I! j% ?  ~
    63.          
      1 e; p8 p4 N7 b& F$ `$ x
    64.     <aop:config>  ' a" P; z8 V# v7 A
    65.         <aop:pointcut id="productServiceMethods" expression="execution(* com.service..*.*(..))" />  7 t0 U( q/ g; ?: q4 s  D
    66.         <aop:advisor advice-ref="txAdvice" pointcut-ref="productServiceMethods" />  + r- E" H4 g# u. D* m' k; L
    67.     </aop:config>  
      * \+ f( h: Z9 }7 _
    68.       5 D& h3 e* z3 V
    69.     <tx:advice id="txAdvice" transaction-manager="transactionManager">  ) y1 D  l) c6 \, ^1 }' H
    70.         <tx:attributes>  ) {9 x# F2 J1 K2 C' q, K) @
    71.                 <tx:method name="save*"   propagation="REQUIRED" />5 @; M8 D/ \5 P+ Q8 J3 S( Z5 p0 f
    72.                         <tx:method name="add*"    propagation="REQUIRED" />% m  {7 U+ h/ v. h- w& ^! H: q
    73.                         <tx:method name="create*" propagation="REQUIRED" />2 z0 p1 Z/ a$ H2 c2 E+ J; u! l* C$ o" S
    74.                         <tx:method name="insert*" propagation="REQUIRED" />
      1 W  N; S! I4 t2 T
    75.                         <tx:method name="update*" propagation="REQUIRED" />* S! O8 v! p2 j4 F* q8 R% Z  c
    76.                         <tx:method name="merge*"  propagation="REQUIRED" />, D/ K% K, @/ z$ x* j. d# y3 ~
    77.                         <tx:method name="del*"    propagation="REQUIRED" />
      " y( p: f: D- ^* i3 S
    78.                         <tx:method name="remove*" propagation="REQUIRED" />; n% e) V3 \6 U5 }( o/ P" f
    79.                         <tx:method name="put*"    propagation="REQUIRED" />) B0 Y5 N0 _; U2 {) ]
    80.             <tx:method name="*" propagation="SUPPORTS" read-only="true" />  - q$ j& P1 [& |% b8 N
    81.         </tx:attributes>  3 t3 G$ e3 ?) y* x- N
    82.     </tx:advice> 0 S1 c! ^- h, w. e
    83. </beans>  
    复制代码
    spring-mvc.xml:. S" b& g" `! z8 M

    7 l; t% c) H/ U8 k3 w! O
    1. <?xml version="1.0" encoding="UTF-8"?>! a- Y$ v; y! Q. C9 c+ E
    2. <beans xmlns="http://www.springframework.org/schema/beans"
      $ q7 K& t* z; g1 [5 O
    3.         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"' ?7 W0 e9 G* p  W0 y
    4.         xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"/ M4 w( h( r, E- a- l( w0 }* ]
    5.         xmlns:mvc="http://www.springframework.org/schema/mvc", t. c+ y/ @  ^9 v  m$ \
    6.         xsi:schemaLocation="http://www.springframework.org/schema/beans  * Z0 I; T* D$ S" Q$ n" @
    7.            http://www.springframework.org/schema/beans/spring-beans-3.0.xsd  
      2 M6 d0 P% q* d3 {2 b! w% A
    8.            http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd  ! T8 K- e0 t' z; D% w9 l
    9.            http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.0.xsd  
      8 @) x/ w# E2 W4 |  I
    10.            http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd: o- a8 z3 }3 M3 U
    11.            http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd">+ a' {- g3 r& R
    12.     <!-- 自动扫描的包注解  -->6 L( S4 S9 N2 @0 z7 c
    13.         <context:component-scan base-package="com.hoodo.rci" />
      * G4 L2 U9 T. H1 D$ _- h* o
    14.         <!-- 自动注入  -->
      4 b# E7 W+ t! G9 Z6 ?
    15.         <mvc:annotation-driven />
      6 [0 q; @. G% v  u  q0 ~
    16.     <!-- 视图解析器 -->7 a+ f2 D$ Y4 Y
    17.         <bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">1 y0 P2 T4 J6 z% ?4 ^; o
    18.                 <property name="prefix" value="/WEB-INF/jsp/" />
      $ |' {) H5 l0 o
    19.                 <property name="suffix" value=".jsp" />/ W7 A1 x2 S2 q
    20.         </bean>
      / H" ^; G1 O8 i4 J/ g
    21.         & Y9 o& [# }" I, b/ C' Q) j
    22.      <!-- 异常解析器 -->! I7 x# K1 ~) q' ^2 f
    23.    <!--  <bean id="simpleMappingExceptionResolver" class="org.springframework.web.servlet.handler.SimpleMappingExceptionResolver">: c/ c. X9 o) L6 i2 @
    24.         <property name="defaultErrorView" value="common/error" />7 A+ i: C- f# }  B! D: i
    25.    </bean> -->6 H" ^8 J, ]/ N- x8 |( w
    26.      4 c& `# ^. N# X3 S$ g3 G
    27.      <!-- 拦截器  -->5 \4 k1 [0 K/ I" d3 S
    28.         <!-- <mvc:interceptors>  S" `/ }- w) c; \% g
    29.             <mvc:interceptor>* ?/ P; y4 t" u- e
    30.                <mvc:mapping path="/admin/*/*" />6 g2 N( E0 a. F& S7 C4 }  I" o3 H
    31.                <bean class="com.filter.CommonInterceptor"></bean>9 K7 b  Z1 J8 p, J. t3 K/ T$ ]
    32.             </mvc:interceptor>2 S5 G7 a# P& W1 _: P" A4 z  W
    33.         </mvc:interceptors> -->
      8 |; M# r9 a! Z6 e

    34. 7 V$ e1 u: Q7 _: X7 S1 d
    35.         <!-- 上传文件相关的配置 -->" J( `' n: c# t6 j6 t0 T$ k
    36.     <bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
      1 ^4 i7 K# h/ z9 U' @; ?# w, ]* f
    37.         <property name="defaultEncoding" value="utf-8" />
      6 `; ?* p) w$ N+ l% q
    38.                 <property name="maxUploadSize" value="104857600" />
      + W0 X  a" H) y% E" i  m0 k
    39.                 <property name="maxInMemorySize" value="4096" />
      $ j4 y5 w9 X/ r& B( x, Y
    40.         </bean>
      9 u2 N1 {, x9 x+ s! Q% ]
    41. </beans>
    复制代码

    1 M$ L4 |1 z" U# H3 {6 i
    # w: Q/ Q3 k" B+ Z
    . a) H5 l9 O+ h# R  ?SpringMVC+hibernate4.3+Spring4.1整合案例

    # x9 @1 D( p. |$ x5 R5 b; }. z3 u0 p# n( [. @- @

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


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

    1

    主题

    3

    听众

    341

    金钱

    四袋长老

    该用户从未签到

    沙发
    发表于 2016-03-17 21:46:03 |只看该作者
    9 @0 a" D0 i4 a" M
    下来,学习一下。谢谢
    回复

    使用道具 举报

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