[Java] Spring AOP 에서 Custom Exception 사용하기
Spring AOP에서 Custom Exception 사용하기
Spring AOP는 CglibAopProxy 클래스를 이용하여 동작합니다.
아래 코드와 같이 super.process() 를 try-catch로 처리하고 있고, Runtime Exception은 exception 을 그대로 던질 수 있기 때문에
Custom Exception은 Exception 클래스가 아니라 RuntimeException을 상속받아서 사용해야 합니다
1 |
|
[Java] Spring AOP 에서 Custom Exception 사용하기
https://blog.hodory.dev/2022/08/10/springboot-spring-aop-에서-custom-exception-사용하기/