반응형
// 둘중에 하나라도 실패하면 rollback 하기
@Transactional(rollbackFor = Exception.class)
public void updateAndDelete(Post post) {
try {
mRepo.update(post);
mRepo.delete(post.getId());
System.out.println("DB 정상");
} catch (Exception e) {
System.out.println("DB 오류");
throw new RuntimeException(e);
}
}
반응형
'Spring > Spring Boot' 카테고리의 다른 글
Spring Boot / JSP를 사용하기 위한 라이브러리 (0) | 2020.09.16 |
---|---|
Spring Boot / JSP 사용시 필요한 시큐리티 라이브러리 및 태그 (0) | 2020.08.11 |
Spring Boot / @ResponseBody와 @RequestBody (0) | 2020.07.16 |
Spring Boot / @ComponentScan과 @Controller, @Service, @Repository, @Configuration, @Component (0) | 2020.07.16 |
Spring Boot / pom.xml (0) | 2020.07.15 |