ssh框架中spring整合hibernate的配置文件模板(带详细注释)

时间:2021-05-14 09:05:30

applicationContext.xml的配置文件模板

 <?xml version="1.0" encoding="UTF-8"?>
<beans
xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd"> <!-- 数据源配置 -->
<bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource"
destroy-method="close">
<property name="driverClass">
<value>com.microsoft.sqlserver.jdbc.SQLServerDriver</value>
</property>
<property name="jdbcUrl">
<value>jdbc:sqlserver://192.168.2.80\SQL2005;databaseName=ledger</value>
</property>
<!-- 默认初始化获取3个连接 -->
<!-- 空闲连接检查时间 -->
<property name="idleConnectionTestPeriod">
<value>18000</value>
</property>
<!-- 最大空闲连接时间 3小时 -->
<property name="maxIdleTime">
<value>25000</value>
</property>
<!-- 检查获取的连接是否有效 -->
<property name="testConnectionOnCheckin">
<value>true</value>
</property>
<property name="testConnectionOnCheckout">
<value>true</value>
</property>
<!-- 测试语句 -->
<property name="preferredTestQuery">
<value>select 1</value>
</property>
<property name="properties">
<props>
<prop key="user">sa</prop>
<prop key="password">123456</prop>
<prop key="c3p0.acquire_increment">5</prop>
<prop key="c3p0.idle_test_period">18000</prop> <!-- 连接空闲超时时间 -->
<prop key="c3p0.timeout">20000</prop>
<prop key="c3p0.max_size">40</prop>
<prop key="c3p0.max_statements">100</prop>
<prop key="c3p0.min_size">10</prop>
</props>
</property>
</bean>
<!-- session工厂(包含数据库的连接信息,实体类和表的映射文件) -->
<bean id="sessionFactory"
class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">
<property name="dataSource">
<ref bean="dataSource" />
</property>
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">org.hibernate.dialect.SQLServerDialect</prop><!--hibernate的数据库方言 本示例:sqlserver数据库 -->
<prop key="hibernate.show_sql">true</prop><!-- 显示sql语句 -->
<prop key="hibernate.format_sql">true</prop><!-- 格式化控制台显示sql语句 -->
<prop key="hibernate.hbm2ddl.auto">update</prop><!-- 如果映射文件在数据库中无表,自动生成表 -->
</props>
</property> <!-- 导入hibernate的映射文件 实体类.hbm.xml文件 -->
<property name="mappingDirectoryLocations">
<list>
<value>classpath:/org/ledger/entity</value>
</list>
</property> </bean>
<!--spring的事务 -->
<bean id="transactionManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager">
<property name="sessionFactory">
<ref bean="sessionFactory" />
</property>
</bean> <!-- 事务的配置。类似于切点。 -->
<tx:advice id="txadvice" transaction-manager="transactionManager">
<tx:attributes>
<tx:method name="saveSysLog" propagation="REQUIRES_NEW" /><!--requires_new:新建事务,如果当前存在事务,把当前事务挂起 -->
<tx:method name="get*" propagation="REQUIRED" read-only="true"/><!--required:如果当前没有事务,就新建一个事务,如果已经存在一个事务中,加入到这个事务中 -->
<tx:method name="find*" propagation="REQUIRED" read-only="true"/>
<tx:method name="query*" propagation="REQUIRED" read-only="true"/>
<tx:method name="*" propagation="REQUIRED" />
</tx:attributes>
</tx:advice> <!-- 配置日志的增强类(说白了,所有请求的连接点都要先到该类中的方法跑一下。)-->
<bean id="logAspect" class="org.ledger.interceptor.LogAspect" autowire="byType"></bean> <!-- aop:config节点中可以定义多个切面 -->
<aop:config proxy-target-class="true"> <!-- 该值为true,表示用spring的cglib动态代理技术代理切面,为false时表明以jdk的动态代理技术代理切面 -->
<!-- 配置事务的切点 -->
<aop:pointcut id="serviceMethods" expression="execution(* org.ledger.service.*Service.*(..))"/> <!-- 定义一个切点 --> <!-- <aop:advisor>”则定义了在哪些连接点应用什么 -->
<!-- 此节点时配置切点加上事务管理 (spring自身的事务管理类,给所有的业务类加上事务,面向切面的)-->
<!-- advisor 是spring aop中的一个概念。
advisor 可以翻译为增强器, 他是切入点(pointcut)和advice 的适配器。 它有两部门组成:一个增强以及一个说明在何处增强的切入点。
增强器完整的模块化了一个方面(因为一个方面,就是由在什么地方增强和怎么增强组成的) 。 增强和切入点可以复用。 -->
<aop:advisor advice-ref="txadvice" pointcut-ref="serviceMethods" /> <!-- 切点和增强的复合物,advice-ref引用的是增强,pointcut-ref引用的切点 --> <!-- 配置日志 (程序员开发的)-->
<!-- “<aop:aspect>”实际上是定义横切逻辑,就是在连接点上做什么 -->
<aop:aspect ref="logAspect"><!-- 定义一个切面 ,ref引用的是增强方法所在的bean。本示例,表示该日志切面的操作方法都在logAspect所代表的java类中-->
<aop:pointcut expression="execution(* org.ledger.service.*Service.*(..))" id="logPointcut" /><!-- 定义日志的切点,动态代理接口 -->
<aop:after-returning method="saveLog" pointcut-ref="logPointcut" /><!-- 增强的方法+切点。意思是,执行完该切点后的连接点(方法),调用增强方法 -->
<aop:after-throwing method="saveLogHasThrowing" pointcut-ref="logPointcut" /><!-- 增强方法+切点。意思是,执行该切点的连接点(方法)抛出异常,调用增强方法 -->
</aop:aspect>
</aop:config> <!-- 给项目加入webservice的扫描器(应该是注解) -->
<context:component-scan base-package="org.ledger.webservice"></context:component-scan>
<!-- 导入action dao service 等的bean节点配置-->
<import resource="applicationContext-dao.xml"/>
<import resource="applicationContext-service.xml"/>
<import resource="applicationContext-webservice.xml"/>
<import resource="applicationContext-action.xml"/>
</beans>