<?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:context="http://www.springframework.org/schema/context"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc.xsd">
<!-- 注解扫描 扫描指定包及其子包下的注解 -->
<context:component-scan base-package="com.qianfeng">
<!-- 排除扫描的注解,排除controller层,不和mvc冲突 -->
<context:exclude-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
</context:component-scan>
<!-- 数据源的配置 -->
<bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
<property name="driverClass" value="com.mysql.jdbc.Driver"></property>
<property name="jdbcUrl" value="jdbc:mysql://localhost:3306/employee"></property>
<property name="user" value="root"></property>
<property name="password" value="lin"></property>
<property name="initialPoolSize" value="5"></property>
<property name="maxPoolSize" value="10"></property>
<property name="maxIdleTime" value="1000"></property>
</bean>
<!-- 通过Spring创建Hibernate的SessionFactory对象 -->
<bean id="sessionFactory" class="org.springframework.orm.hibernate5.LocalSessionFactoryBean">
<property name="dataSource" ref="dataSource"></property>
<!-- 将原来hibernate.cfg.xml的配置直接写入spring的配置 -->
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop>
<prop key="hibernate.show_sql">true</prop>
<prop key="hibernate.hbm2ddl.auto">update</prop>
</props>
</property>
<!-- 扫描hibernate注解 -->
<property name="packagesToScan" value="com.qianfeng.entity"></property>
</bean>
<!-- 1配置hibernate的事务管理类 -->
<bean id="txManage" class="org.springframework.orm.hibernate5.HibernateTransactionManager">
<!-- 注入sessionFactory -->
<property name="sessionFactory" ref="sessionFactory"></property>
</bean>
<!-- 2配置事务的特性 -->
<tx:advice id="txAdvice" transaction-manager="txManage">
<tx:attributes>
<!-- 针对使用事务的add开头的方法
read-only 是否只读,true 是,false 可读可写
如果有插入等操作,设为为true,运行程序会报异常-->
<tx:method name="add*" read-only="false" propagation="REQUIRED"/>
<tx:method name="delete*" read-only="false" propagation="REQUIRED"/>
<tx:method name="update*" read-only="false" propagation="REQUIRED"/>
<tx:method name="find*" read-only="true" propagation="REQUIRED"/>
<!-- 针对其余的方法 -->
<tx:method name="*" propagation="NOT_SUPPORTED"/>
</tx:attributes>
</tx:advice>
<!-- 3AOP配置 -->
<aop:config>
<!-- 切入点 -->
<aop:pointcut expression="execution(* com.qianfeng.service.*.*(..))" id="pc"/>
<!-- 通知 -->
<aop:advisor advice-ref="txAdvice" pointcut-ref="pc"/>
</aop:config>
</beans>
spring-bean
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 聊聊工厂bean和bean工厂有什么同异,先说结论 bean工厂:不是bean,在spring中一般指的是Defa...
- 如果我们的应用是以集群的方式部署,或者我们希望在运行期间能够动态调整引用的某些配置值,这时,就必须将配置信息放到数...
- 此教程先讲如何创建一个bean和实验效果,解说在后面再补回来,或者可以看看慕课网的《Spring入门篇》。此教程主...
- 接着上文,来看下DefaultListableBeanFactory的getBean过程。 BeanFactory...
- 不讲前言,也无后语,只记录一下实现及注意点。 在servlet+spring项目中,想在servlet类里面注入s...