springboot
qq_24216697
这个作者很懒,什么都没留下…
展开
-
spring boot事务回滚
使用@Transactional这个注解即可 可以放在service上,也可以放在Controller上。在你需要回滚的方法使用即可。但是注意使用了Try catch捕获异常之后要自己手动回滚,代码是 TransactionAspectSupport.currentTransactionStatus().setRollbackOnly(); ...原创 2019-10-22 09:50:27 · 136 阅读 · 0 评论 -
Spring boot学笔记— Thymeleaf模板
在pom文件中配置 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> </dependency> 在编写controll...原创 2018-11-19 12:36:47 · 80 阅读 · 0 评论 -
spring-boot log4j
1.添加log4j相关依赖 在pom.xml文件中添加相关依赖: <!--配置log4j--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starte...转载 2018-12-18 15:37:40 · 156 阅读 · 0 评论