我的日常

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

动态微博

查看: 8500|回复: 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:5 T& }' C( x  @' S

    1 v1 x" l. y* A" c5 X0 R1 L0 [
    1. <?xml version="1.0" encoding="UTF-8"?>  . b6 `4 m/ e6 o( w9 [
    2. <beans xmlns="http://www.springframework.org/schema/beans"   
      4 K$ i! t6 u3 I  W3 c5 V. I. C& W
    3.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"   3 w5 e) A5 V. h- N& U% V
    4.     xmlns:p="http://www.springframework.org/schema/p"  
      : ^' ]) d  ?# @( ?" p9 u0 n/ x
    5.     xmlns:aop="http://www.springframework.org/schema/aop"   
      4 L, ^5 ?* X4 \
    6.     xmlns:context="http://www.springframework.org/schema/context"  
      6 j/ X, r4 V8 Z9 T
    7.     xmlns:jee="http://www.springframework.org/schema/jee"  / S: }1 ]3 F+ `4 p) k  a6 q, w9 K
    8.     xmlns:tx="http://www.springframework.org/schema/tx"  
      ! G3 i8 z; u0 o7 U
    9.     xsi:schemaLocation="   
      7 W3 S. g! D$ Z
    10.         http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.0.xsd  
      # w3 K1 h; w* Q* G
    11.         http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd  5 P+ n7 Q6 d2 G& c
    12.         http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd  
      7 ]; A2 R. s9 q5 o  a3 B! D3 H( I
    13.         http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-4.0.xsd  
        N- m2 P1 y  S. L! q
    14.         http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd">
      5 g' K8 k( j8 `" K, \+ ]# d
    15.    
      : e* j( Y# o2 H& f9 @6 g
    16.     <!-- <mvc:annotation-driven /> -->" L7 Y: S  v. d- b5 H( t5 @
    17.     <!-- 【配置视图解析器】 -->  
      6 z0 u' _& l4 [, Y& r
    18.     <!-- InternalResourceViewResolver会在ModelAndView返回的视图名前加上prefix指定的前缀,再在最后加上suffix指定的后缀 -->  * a  @* v7 D7 P% Y: B
    19.     <!-- 由于UserController返回的ModelAndView中的视图名是userlist,故该视图解析器将在/WEB-INF/jsp/userlist.jsp处查找视图 -->  
      1 W1 U9 ]/ Y2 s; {" Q
    20. <!--    <bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">  
      5 t: g2 ]% m  {# W, f
    21.         <property name="prefix" value="/WEB-INF/jsp/"/>  
      + a6 k% G, N  ^! W
    22.         <property name="suffix" value=".jsp"/>9 ], u1 Q* C2 B8 \1 a
    23.     </bean> -->
      % y* S$ s. d0 @" h1 c* ~/ x9 V
    24.       i8 {, N1 ?9 j$ B# b8 I  G8 j9 U
    25.     <!--  导入springMvc.xml配置文件 -->/ Y$ z3 H* M4 M7 y. }9 t
    26.     <import resource="classpath:config/spring-mvc.xml" />/ k- ^& ]/ @8 C+ Y
    27.     <!-- 加载数据库配置 -->
      & S1 N) {: M$ R% D
    28.     <context:property-placeholder location="classpath:config/db.properties" />: g  y( S  R. g' J" B, `- ?
    29.         <!-- 加载数据源 -->, L$ J+ Z4 x1 ?  Y
    30.         <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
      " s$ Z4 N8 {0 F9 t
    31.                 <property name="driverClassName" value="${db.driverClassName}" />! |- O! j7 E0 e2 P
    32.                 <property name="url" value="${db.url}" />3 e: W; a  m# g# u8 T/ n
    33.                 <property name="username" value="${db.username}" />  |3 n6 L; o5 o4 ]& s5 R" F
    34.                 <property name="password" value="${db.password}" />
      / t: }0 }1 n. [0 _! U* n) X
    35.                 <property name="maxActive" value="${db.maxActive}" />* S. ?! ^2 Y# e
    36.                 <property name="maxIdle" value="${db.maxIdle}" />- z% h+ C- Z& T3 V/ B
    37.                 <property name="minIdle" value="${db.minIdle}" />
      3 G7 b# l. @+ V" s  ~+ E# y
    38.                 <property name="maxWait" value="${db.maxWait}" />, {% o. i" j( X+ `
    39.         </bean>+ H* ]+ \! Z, B+ ^( h) X4 u
    40.     * C5 s3 I' Y( z7 U
    41.     0 k2 U& }1 U3 W& D1 E
    42.     <bean id="sessionFactory" class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">  
      * x: j) `- `+ p5 Q; v3 M
    43.         <property name="dataSource" ref="dataSource" />  
      . ]: G# g) V1 ]
    44.         <property name="mappingDirectoryLocations">  - U. J7 y( l5 S. y; |
    45.                   <list>
      3 O! R1 f8 I' t
    46.                                 <value>classpath:config/hbm/</value>
      * T# b9 m" [- @& D: V+ _
    47.                         </list>, X$ a2 T6 f, M% J! U8 v
    48.         </property>  2 f% N1 Z) [0 g, X8 X8 u; m% ^
    49.         <property name="hibernateProperties">  
      ' R. H( u( l; B8 y" l% @
    50.             <props>) |' _* `$ Q: c' C; y
    51.                                 <prop key="hibernate.dialect">${hibernate.dialect}</prop>' t! {7 {9 S4 ~; F" E2 e& F# l
    52.                                 <prop key="hibernate.show_sql">${hibernate.show_sql}</prop>
      / P, r0 M' ~) l# G9 B
    53.                                 <prop key="hibernate.hbm2ddl.auto">${hibernate.hbm2ddl.auto}</prop>
      ! V. i3 }9 F1 ^- `) Z( P0 }& U1 h1 {
    54.                                 <!--<prop key="hibernate.query.factory_class">org.hibernate.hql.ast.ASTQueryTranslatorFactory</prop>-->2 t) e. X6 f4 z
    55.                                 </props> % @1 Y' z4 G7 Q( K
    56.         </property>  
      . h5 m! S" ]" P1 F
    57.     </bean>
      $ j( m4 {* p) p  h: A
    58.     ( S3 C: w5 Q+ s5 [4 B6 [5 Z& B8 `; \. F
    59.     <!-- 声明式事务 -->  
      " g2 z; {) J+ I& J& w) F+ H6 L
    60.     <bean id="transactionManager" class="org.springframework.orm.hibernate4.HibernateTransactionManager">  / G4 l& s! u0 n
    61.         <property name="sessionFactory" ref="sessionFactory" />  
      ' B7 P; ^$ O: p" p
    62.     </bean>  
      " z( S9 Y0 p- y& G- W  b, P9 S' v
    63.          
      - t: A2 [) p4 F! W2 m* J
    64.     <aop:config>  # ^; C+ B. a" ~$ p, I; ?+ U
    65.         <aop:pointcut id="productServiceMethods" expression="execution(* com.service..*.*(..))" />  
      " T/ [0 a5 r7 \% T5 V. y
    66.         <aop:advisor advice-ref="txAdvice" pointcut-ref="productServiceMethods" />  * i  k+ q3 P3 W5 ?# S( Y
    67.     </aop:config>  % c+ v- J# }/ r/ z2 Z
    68.       
      ( ^6 ~( ]7 F  ~* Q! r1 V2 o- r  H8 l
    69.     <tx:advice id="txAdvice" transaction-manager="transactionManager">  
      7 k! a, ~' z: T3 P6 l4 M1 S
    70.         <tx:attributes>  
      - w  \8 U4 L3 q8 O; f. @# t
    71.                 <tx:method name="save*"   propagation="REQUIRED" />2 o% @! u- D2 j
    72.                         <tx:method name="add*"    propagation="REQUIRED" />. B) @4 l2 l- s7 D4 t
    73.                         <tx:method name="create*" propagation="REQUIRED" />/ r8 c% G# W! _# L
    74.                         <tx:method name="insert*" propagation="REQUIRED" />& O0 d' ^, |7 G1 G
    75.                         <tx:method name="update*" propagation="REQUIRED" />
      * G. Q% F  L. p# p! P8 N" Y
    76.                         <tx:method name="merge*"  propagation="REQUIRED" />1 v4 Z! n5 \3 t( S7 c+ ~- \7 F
    77.                         <tx:method name="del*"    propagation="REQUIRED" />
      % O. v/ K7 M- @9 ~, v. {
    78.                         <tx:method name="remove*" propagation="REQUIRED" />
      6 z7 Y8 B& T! _: T* k- P5 i2 K
    79.                         <tx:method name="put*"    propagation="REQUIRED" />
      / f% |6 E) v3 ~8 B" ^
    80.             <tx:method name="*" propagation="SUPPORTS" read-only="true" />  & W% R' G: w7 o/ p
    81.         </tx:attributes>  ) M9 o! t) Q1 w1 V6 e
    82.     </tx:advice> ; e: l+ w+ o- P8 [! `/ ~
    83. </beans>  
    复制代码
    spring-mvc.xml:
    . X  I9 `" G! R, u& k. C
    $ c- q! E/ ]0 v6 H
    1. <?xml version="1.0" encoding="UTF-8"?>
      ! }1 H- r+ F7 t. N2 W" I
    2. <beans xmlns="http://www.springframework.org/schema/beans"0 H$ y% G" c# L6 P
    3.         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
      9 T. \1 @3 p& }9 U8 L2 W
    4.         xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"
      ( E( h% L- x+ ^& Z9 ^
    5.         xmlns:mvc="http://www.springframework.org/schema/mvc"
      " X/ X: l+ Y# z9 \( F! E
    6.         xsi:schemaLocation="http://www.springframework.org/schema/beans    z8 N+ r4 d7 r; ]5 T, e9 }( v
    7.            http://www.springframework.org/schema/beans/spring-beans-3.0.xsd  4 J" ^% k, V% o7 e% C3 P7 t
    8.            http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd  ; Z4 A+ }- b& x" S! P. D
    9.            http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.0.xsd  8 n( C) v: P  V7 \: W) `
    10.            http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd
      & n2 Q3 y6 L. z' r. F
    11.            http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd">
      ! @; N6 O, l! d
    12.     <!-- 自动扫描的包注解  -->) N: v2 S5 j9 ]! {# }7 F* ^. B
    13.         <context:component-scan base-package="com.hoodo.rci" />8 o  `8 r  s- x  D6 D+ H
    14.         <!-- 自动注入  -->0 o1 v2 I: U! U3 H  B2 R  M
    15.         <mvc:annotation-driven />
      ( B( J. K3 M% n# N" K" X
    16.     <!-- 视图解析器 -->( Y9 p9 U0 m' q6 t
    17.         <bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
      & f; g1 `, @$ S' x/ [  x) z  ]
    18.                 <property name="prefix" value="/WEB-INF/jsp/" />. v8 `# h" H3 i. F* U5 u5 n5 p
    19.                 <property name="suffix" value=".jsp" />
      + A) j* A. D9 o" Z  ?# W
    20.         </bean># y% z6 b- D1 q8 J* M+ R
    21.         
      9 {* h" N, K( \2 t7 p" w9 Z' `+ F
    22.      <!-- 异常解析器 -->6 `8 o  E. K9 O7 X; p" X  ~9 P
    23.    <!--  <bean id="simpleMappingExceptionResolver" class="org.springframework.web.servlet.handler.SimpleMappingExceptionResolver">
      8 b7 f6 D( u$ C& s
    24.         <property name="defaultErrorView" value="common/error" />* f/ v& L% A1 x# z( [
    25.    </bean> -->5 U5 y5 c7 ~9 W: y( o) X3 b
    26.      3 ~! k& p6 H; ~  @
    27.      <!-- 拦截器  -->
      9 n8 f' G# ~/ d7 J% |
    28.         <!-- <mvc:interceptors>" C8 s9 u7 m& X. @
    29.             <mvc:interceptor>
      ( v0 L" E8 Z2 h3 r
    30.                <mvc:mapping path="/admin/*/*" />5 w4 o0 c% w, n1 X# q- B
    31.                <bean class="com.filter.CommonInterceptor"></bean>
      " J% |9 {4 W5 v. _% R( N2 h6 z( ?9 Z7 B
    32.             </mvc:interceptor>% Q0 e% ]/ W. ^% X7 {1 J
    33.         </mvc:interceptors> --># l* }" L7 V! H2 \6 q* x0 o

    34. : w+ z, j. d8 p; }$ B
    35.         <!-- 上传文件相关的配置 -->3 T' R: F! j$ b. k
    36.     <bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
      ' u8 u9 N7 \$ a" S
    37.         <property name="defaultEncoding" value="utf-8" />4 m) m/ b( u* K, O7 S
    38.                 <property name="maxUploadSize" value="104857600" />
      : c! o& d/ o: \0 w
    39.                 <property name="maxInMemorySize" value="4096" />( t9 k+ ~: E6 l6 X  q- z0 I
    40.         </bean>- T" I3 r6 s1 Q0 |( g
    41. </beans>
    复制代码
    ) I) \) _0 d  b. l
    5 i. L" L! C0 o1 k' M

    ! Q4 S3 v: H9 z2 [0 gSpringMVC+hibernate4.3+Spring4.1整合案例
    . R( |# R, I+ K

    & U6 h  s4 d) {

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


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

    1

    主题

    3

    听众

    341

    金钱

    四袋长老

    该用户从未签到

    沙发
    发表于 2016-03-17 21:46:03 |只看该作者
    7 L% }$ ?7 _4 {! t
    下来,学习一下。谢谢
    回复

    使用道具 举报

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