我配置spring事务为什么不起作用
application.xml配置-------------------------------<beanid="txManager"class="org.springf...
application.xml 配置-------------------------------
<bean id="txManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="dataSource" />
</bean>
<bean id="txProxyTemplate" abstract="true" class="org.springframework.transaction.interceptor.TransactionProxyFactoryBean">
<property name="transactionManager" ref="txManager" />
<property name="transactionAttributes">
<props>
<prop key="save*">PROPAGATION_REQUIRED</prop>
<prop key="merge*">PROPAGATION_REQUIRED</prop>
<prop key="*">PROPAGATION_REQUIRED,readOnly</prop>
</props>
</property>
</bean>
service 配置------------------
<bean id="loginService" parent="txProxyTemplate">
<property name="target">
<bean
class="com.play.login.service.impl.LoginServiceImpl">
<property name="loginDao" ref="loginDao" />
</bean>
</property>
</bean> 展开
<bean id="txManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="dataSource" />
</bean>
<bean id="txProxyTemplate" abstract="true" class="org.springframework.transaction.interceptor.TransactionProxyFactoryBean">
<property name="transactionManager" ref="txManager" />
<property name="transactionAttributes">
<props>
<prop key="save*">PROPAGATION_REQUIRED</prop>
<prop key="merge*">PROPAGATION_REQUIRED</prop>
<prop key="*">PROPAGATION_REQUIRED,readOnly</prop>
</props>
</property>
</bean>
service 配置------------------
<bean id="loginService" parent="txProxyTemplate">
<property name="target">
<bean
class="com.play.login.service.impl.LoginServiceImpl">
<property name="loginDao" ref="loginDao" />
</bean>
</property>
</bean> 展开
展开全部
对loginService声明事务时的方式有问题。按我下面的写法试试,应该没有问题的,我们项目就是这么写的。
<bean id="loginServiceTarget" class="yourLoginServiceClass" />
<bean id="loginService" parent="txProxyTemplate" >
<property name="target"><ref local="loginServiceTarget"/></property>
</bean>
<bean id="loginServiceTarget" class="yourLoginServiceClass" />
<bean id="loginService" parent="txProxyTemplate" >
<property name="target"><ref local="loginServiceTarget"/></property>
</bean>
追问
可是这样写我的Dao就注入不进去了 一直说没有get set 方法 我的类里面确实有这两个方法呀
追答
可以注入的。标记内加上default-autowire="byName",然后自己会匹配同名的bean。
展开全部
事务直接配到DAO上
<bean id="transactionManager"
class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="dataSource" />
</bean>
<bean id="baseTxProxy"
class="org.springframework.transaction.interceptor.TransactionProxyFactoryBean"
lazy-init="true" abstract="true">
<property name="transactionManager">
<ref bean="transactionManager" />
</property>
<property name="transactionAttributes">
<props>
<prop key="update*">PROPAGATION_REQUIRED</prop>
</props>
</property>
</bean>
<bean id="studentDaoProxy" parent="baseTxProxy">
<property name="target">
<ref bean="studentDao" />
</property>
</bean>
<bean id="studentDao" class="com.dao.StudentDaoImpl">
<property name="dataSource" ref="dataSource" />
</bean>
StudentDao st = (StudentDao) context.getBean("studentDaoProxy");
两个bean也可以合并为
<bean id="studentDao" parent="baseTxProxy">
<property name="target">
<bean class="com.dao.StudentDaoImpl">
<property name="dataSource" ref="dataSource" />
<property name="kpiDao" ref="kpiDao" />
</bean>
</property>
</bean>
StudentDao st = (StudentDao) context.getBean("studentDao");
上述这种方式必须使用接口,为什么。
第二种同样必须用接口。配置起来比第一种麻烦
<bean id="transactionManager"
class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="dataSource" />
</bean>
<bean id="transactionInterceptor"
class="org.springframework.transaction.interceptor.TransactionInterceptor">
<property name="transactionManager" ref="transactionManager" />
<property name="transactionAttributes">
<props>
<prop key="update*">PROPAGATION_REQUIRED</prop>
</props>
</property>
</bean>
<bean id="studentDaoProxy"
class="org.springframework.aop.framework.ProxyFactoryBean">
<property name="target" ref="studentDao" />
<property name="interceptorNames">
<list>
<value>transactionInterceptor</value>
</list>
</property>
</bean>
<bean id="studentDao" class="com.dao.StudentDaoImpl">
<property name="dataSource" ref="dataSource" />
</bean>
ApplicationContext context=new ClassPathXmlApplicationContext("applicationContext.xml");
StudentDao st = (StudentDao) context.getBean("studentDaoProxy");
如果使用的都是接口,那么就不需要用cglib-nodep-2.1_3.jar
如果service调dao没有用到接口,那么必须用cglib-nodep-2.1_3.jar
<bean id="transactionManager"
class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="dataSource" />
</bean>
<bean id="baseTxProxy"
class="org.springframework.transaction.interceptor.TransactionProxyFactoryBean"
lazy-init="true" abstract="true">
<property name="transactionManager">
<ref bean="transactionManager" />
</property>
<property name="transactionAttributes">
<props>
<prop key="update*">PROPAGATION_REQUIRED</prop>
</props>
</property>
</bean>
<bean id="studentDaoProxy" parent="baseTxProxy">
<property name="target">
<ref bean="studentDao" />
</property>
</bean>
<bean id="studentDao" class="com.dao.StudentDaoImpl">
<property name="dataSource" ref="dataSource" />
</bean>
StudentDao st = (StudentDao) context.getBean("studentDaoProxy");
两个bean也可以合并为
<bean id="studentDao" parent="baseTxProxy">
<property name="target">
<bean class="com.dao.StudentDaoImpl">
<property name="dataSource" ref="dataSource" />
<property name="kpiDao" ref="kpiDao" />
</bean>
</property>
</bean>
StudentDao st = (StudentDao) context.getBean("studentDao");
上述这种方式必须使用接口,为什么。
第二种同样必须用接口。配置起来比第一种麻烦
<bean id="transactionManager"
class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="dataSource" />
</bean>
<bean id="transactionInterceptor"
class="org.springframework.transaction.interceptor.TransactionInterceptor">
<property name="transactionManager" ref="transactionManager" />
<property name="transactionAttributes">
<props>
<prop key="update*">PROPAGATION_REQUIRED</prop>
</props>
</property>
</bean>
<bean id="studentDaoProxy"
class="org.springframework.aop.framework.ProxyFactoryBean">
<property name="target" ref="studentDao" />
<property name="interceptorNames">
<list>
<value>transactionInterceptor</value>
</list>
</property>
</bean>
<bean id="studentDao" class="com.dao.StudentDaoImpl">
<property name="dataSource" ref="dataSource" />
</bean>
ApplicationContext context=new ClassPathXmlApplicationContext("applicationContext.xml");
StudentDao st = (StudentDao) context.getBean("studentDaoProxy");
如果使用的都是接口,那么就不需要用cglib-nodep-2.1_3.jar
如果service调dao没有用到接口,那么必须用cglib-nodep-2.1_3.jar
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
spring事务的声明部分你写了吗
更多追问追答
追问
声明了呀
追答
我说的不是这个,我说的是头部的声明
这些东西,你写了吗
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你的dao注入不进去是因为你使用了local,local的作用范围只能在同一个xml配置文件内,你的service是另一个配置文件吧,所以它找不到。事务不起作用,会不会是采用jdbc的事务有问题呢?换个事务看看,还有你的连接点怎么看着怎么别扭啊,先把思路理清,一步一步测试。
追问
我这样写也是不行的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询