概述
什么是事务?
理解事务其实就是一句话要么做完,要么不做
- 要么做完:方法正常执行结束
- 要么不做:方法中某个环节出现异常,方法就会回滚,该方法就相当于没有被执行
事务代码
步骤
- 给方法上标注
@Transactional
表示当前方法是一个事务方法。 @EnableTransactionManagerment
开启基于注解的事务管理功能- 配置事务管理器来控制事务
代码:
Dao
@Repository
public class UserDao {
@Autowired
JdbcTemplate jdbcTemplate;
public void insert(String name,int age){
String sql = "insert into user2(name,age) values (?,?)";
jdbcTemplate.update(sql,name,age);
}
}
service
@Service
public class UserService {
@Autowired
UserDao userDao;
@Transactional //表名该方法是一个事务方法
public void insert(String name,int age){
userDao.insert(name,age);
int i = 10/0;
}
}
配置类
@ComponentScan("com.spirng.tx")
@Configuration
@EnableTransactionManagement
public class TxConfig {
@Bean
public DataSource dataSource() throws PropertyVetoException {
ComboPooledDataSource dataSource = new ComboPooledDataSource();
dataSource.setUser("root");
dataSource.setPassword("123456");
dataSource.setDriverClass("com.mysql.cj.jdbc.Driver");
dataSource.setJdbcUrl("jdbc:mysql://localhost:3306/test?characterEncoding=utf8&useSSL=false&serverTimezone=UTC&rewriteBatchedStatements=true");
return dataSource;
}
@Bean
public JdbcTemplate jdbcTemplate() throws PropertyVetoException {
JdbcTemplate jdbcTemplate = new JdbcTemplate(dataSource());
return jdbcTemplate;
}
@Bean
public PlatformTransactionManager transactionManager() throws PropertyVetoException {
return new DataSourceTransactionManager(dataSource());
}
}
测试test
@Test
public void test01(){
AnnotationConfigApplicationContext applicationContext = new AnnotationConfigApplicationContext(TxConfig.class);
UserService userService = applicationContext.getBean(UserService.class);
userService.insert("史莱克",29);
applicationContext.close();
}
最后
以上就是瘦瘦煎蛋为你收集整理的Spring事务入门什么是事务?事务代码的全部内容,希望文章能够帮你解决Spring事务入门什么是事务?事务代码所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复