gpt4 book ai didi

java - mybatis-spring中如何使用@Transactional注解?

转载 作者:搜寻专家 更新时间:2023-11-01 01:49:54 26 4
gpt4 key购买 nike

我尝试在 springmybatis 中使用 @Transactional 注释,使用 mybatis-spring 依赖项。这是服务层。

@Service
public class OracleService {

@Autowired
private TestMapper mapper;

@Autowired
private PlatformTransactionManager transactionManager;

@Transactional(propagation = Propagation.REQUIRED,
rollbackFor = Exception.class,
value = "transactionManager")
void insert1() {
TestModel testModel = new TestModel(1, "title1", "content1");
mapper.insert(testModel);
throw new RuntimeException();
}
}

如您所见,insert1() 中抛出了一个RuntimeException,因此插入操作应该会失败。但事实上,并没有。记录插入成功。为什么?

这是我的主要方法。

public class Launcher {
public static void main(String[] args) {
ApplicationContext cxt = new ClassPathXmlApplicationContext("spring-config.xml");
OracleService oracleService = cxt.getBean(OracleService.class);
try {
oracleService.insert1();
} catch(Exception e) {
System.out.println("Exception occurred!");
}
}
}

Spring 配置。

<?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:tx="http://www.springframework.org/schema/tx"

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/tx
http://www.springframework.org/schema/tx/spring-tx.xsd">


<context:component-scan base-package="com.database.learn"/>

<bean id="oracleDataSource" class="oracle.jdbc.pool.OracleDataSource">
<property name="URL" value="OracleJdbcUrl"/>
<property name="user" value="user"/>
<property name="password" value="password"/>
</bean>

<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<property name="dataSource" ref="oracleDataSource"/>
<property name="configLocation" value="classpath:mybatis-config.xml"/>
</bean>

<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="oracleDataSource" />
</bean>

<bean id="testMapper" class="org.mybatis.spring.mapper.MapperFactoryBean">
<property name="mapperInterface" value="com.database.learn.TestMapper"/>
<property name="sqlSessionFactory" ref="sqlSessionFactory"/>
</bean>
<tx:annotation-driven transaction-manager="transactionManager" />
</beans>

我在pom.xml中使用了以下依赖项

    <dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis</artifactId>
<version>3.4.1</version>
</dependency>
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis-spring</artifactId>
<version>1.3.0</version>
</dependency>
<dependency>
<groupId>com.oracle</groupId>
<artifactId>ojdbc6</artifactId>
<version>11.2.0.3</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
<version>4.3.2.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>4.3.2.RELEASE</version>
</dependency>

最佳答案

正如@M.Deinum 提到的,我必须公开应用@Transactional 的方法,换句话说,我必须更改

@Transactional(propagation = Propagation.REQUIRED)
void insert1() {
TestModel testModel = new TestModel(1, "title1", "content1");
mapper.insert(testModel);
throw new RuntimeException();
}

@Transactional(propagation = Propagation.REQUIRED)
public void insert1() {
TestModel testModel = new TestModel(1, "title1", "content1");
mapper.insert(testModel);
throw new RuntimeException();
}

原因写在spring文档中。

Method visibility and @Transactional

When using proxies, you should apply the @Transactional annotation only to methods with public visibility. If you do annotate protected, private or package-visible methods with the @Transactional annotation, no error is raised, but the annotated method does not exhibit the configured transactional settings. Consider the use of AspectJ (see below) if you need to annotate non-public methods.

关于java - mybatis-spring中如何使用@Transactional注解?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41009873/

26 4 0
文章推荐: asp.net - javascript 添加到