728x90
반응형
예외 처리
-
[appling] Service 예외 처리appling 프로젝트 2024. 9. 9. 14:32
🔴 Service에서 예외 발생 부분 처리하기Controller에서 반환하는 데이터를 처리하면서 Service에서 Exception이 발생하는 경우도 처리해야 된다.🟠 Service에서 Exception 발생하는 경우@Service@RequiredArgsConstructor@Transactional(readOnly = true)public class ProductServiceImpl implements ProductService { private final ProductRepository productRepository; private final ProductCustomRepository productCustomRepository; ... @Transactional @Ove..