我尝试在基于 Spring 的 Web 应用程序中配置声明式事务管理,但它拒绝与我合作。
我有两个主要问题:
- 在我们的数据源(我们的应用程序需要它)上将 defaultAutoCommit 设置为 false 会导致所有查询回滚,无论是否涉及事务。
- 配置了事务并创建了代理类和事务方法,但是似乎没有使用任何事务。
第一个问题相当令人困惑,因为每个单独的查询都在数据库中回滚。这也包括 SELECT 语句。什么可能导致每个查询在数据库中回滚?
至于第二个问题,我对事务管理的配置概述如下:
应用程序上下文.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:p="http://www.springframework.org/schema/p"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:context="http://springframework.org/schema/context"
xmlns:util="http://www.springframework.org/schema/util"
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/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/spring-context-3.0.xsd
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.0.xsd"
default-autowire="byName">
<!-- the transactional advice (what 'happens'; see the <aop:advisor/> bean below) -->
<tx:advice id="txAdvice" transaction-manager="txManager">
<!-- the transactional semantics... -->
<tx:attributes>
<!-- other methods use the default transaction settings (see below) -->
<tx:method name="*" rollback-for="Exception" />
</tx:attributes>
</tx:advice>
<!-- ensure that the above transactional advice runs for any execution
of an operation defined by a service in the service package -->
<aop:config>
<aop:pointcut id="serviceOperations" expression="execution(* foo.bar.service.*.*(..))"/>
<aop:advisor advice-ref="txAdvice" pointcut-ref="serviceOperations"/>
</aop:config>
<!-- similarly, don't forget the PlatformTransactionManager -->
<bean id="txManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="dataSource"/>
</bean>
<bean id="dataSource" destroy-method="close" class="org.apache.commons.dbcp.BasicDataSource">
<property name="driverClassName" value="${jdbc.driverClassName}" />
<property name="url" value="${jdbc.url}" />
<property name="username" value="${jdbc.username}" />
<property name="password" value="${jdbc.password}" />
<property name="defaultAutoCommit" value="false" />
</bean>
<bean id="fooService" class="foo.bar.service.FooService" />
<bean id="barService" class="foo.bar.service.BarService" />
<bean id="zapService" class="foo.bar.service.ZapService" />
</beans>
从我尝试解决此问题时访问的所有教程和论坛中,我相信我的配置应该是正确的。但是我并不完全理解 aop 和 spring 事务,所以我可能会遗漏一些重要的东西。
如上所述,我可以跟踪我的日志并查看为我的服务类创建的代理以及事务方法。但是,当我实际运行应用程序并跟踪日志时,我看不到任何处理 DataSourceTransactionManager 或正在创建、提交、回滚等事务的语句。
在我看来,实际上并没有运行任何东西,而且我非常困惑,因为我遵循了许多不同的教程并尝试了许多不同的方法,但它总是以这种情况结束。
我也相当确定我的 log4j 属性设置正确以接收来自 DataSourceTransactionManager 的消息,但我在下面提供它们以确保它不仅仅是我的日志记录错误。
我的 log4j 设置了以下记录器以尝试跟踪事务:
log4j.logger.org.springframework=INFO, file
log4j.logger.org.springframework.jdbc.datasource=DEBUG, file
log4j.logger.org.springframework.transaction=DEBUG, file
注意:我有一次在 DEBUG 上运行了顶级记录器,这就是我验证服务代理正在创建的地方。
有没有人对可能发生的事情有任何见解?我现在相当卡住,因为我确实看到了一些与创建交易有关的部分,但我没有看到任何使用任何交易的迹象。
编辑:
JB Nizet 要求的附加信息。
我的整个应用程序是注解驱动的,所以我的服务 bean 使用 @Service 进行注解,并通过基于名称的自动装配注入到我的控制器中。
下面是我的服务类之一的示例(名称已更改,但将反映我的 applicationContext.xml)。
@Service("zapService")
public class ZapService
{
/**
* Data access object which performs the database look up
*/
private ZapDAO zapDAO;
/**
* Add the given zap to the database
*
* @param zap a populated zap
*/
public void processNewZap(Zap zap)
{
zapDAO.processNewZap(zap);
}
}
如您所见,我的服务类只是控制器类和 dao 类之间的代理。DAO 是我实际处理数据库连接的地方。
我相信我在某处读到,使服务事务化,而不是 dao 类,是处理事务时的首选做法。如果我错了,请纠正我。
ZapDAO 类概述如下。
@Repository("zapDAO")
public class ZapDAO
{
/**
* Log4j logger for this class
*/
Logger logger = Logger.getLogger(ZapDAO.class);
/**
* Spring jdbc object to handle interacting with the database
*/
private JdbcTemplate jdbcTemplate;
public void processNewZap(Zap zap) {
... query constructing logic ...
this.jdbcTemplate.update(INSERT_ZAP_QUERY_SQL);
}
public void setDataSource(DataSource dataSource)
{
Assert.notNull(dataSource, "You must supply a valid data source");
this.jdbcTemplate = new JdbcTemplate(dataSource);
}
}
我使用 jdbcTemplate 来处理我的连接和查询。