springboot使用事物注解方式代码实例

网友投稿 270 2022-12-22


springboot使用事物注解方式代码实例

这篇文章主要介绍了springboot使用事物注解方式代码实例,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考

1.在启动类Application中添加注解@EnableTransactionManagement

import tk.mybatis.spring.annotation.MapperScan;

import org.springframework.boot.SpringApplication;

import org.springframework.boot.autoconfigure.SpringBootApplication;

import org.springframework.transaction.annotation.EnableTransactionManagement;

@SpringBootApplication

@EnableTransactionManagement //开启书屋管理注解模式 最新的版本可以省略

@MapperScan("com.xz.springboot.mapper") //扫描该包下所有的接口并为该接口生成实现类

public class Springboot01Application {

public static void main(String[] args) {

SpringApplication.run(Springboot01Application.class, args);

}

}

2.在业务层添加@Transactional

import com.xz.springboot.bean.User;

import com.xz.springboot.mapper.UserMapper;

import org.springframework.beans.factory.annotation.Autowired;

import org.springframework.stereotype.Service;

import org.springframework.transaction.annotation.Transactional;

import java.util.List;

@Service

public class UserService {

@Autowired

private UserMapper userMapper;

public List queryAll(){

System.out.println("热部署");

return userMapper.findAll();

}

@Transactional

public void deleteById(Integer id) {

userMapper.deleteById(id);

// int c=10/0;

}

}


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:spring+srpingmvc+hibernate实现动态ztree生成树状图效果
下一篇:如何基于JavaFX开发桌面程序
相关文章

 发表评论

暂时没有评论,来抢沙发吧~