标签: java spring
我有一个项目需求,我将没有@Controller或@RestController,但是我需要为我的服务层使用一个全局异常处理程序,因此我需要配置{{1} } @ControllerAdvice上,请告诉我是否还有其他方法可以做到这一点。
@Controller
@RestController
@ControllerAdvice
答案 0 :(得分:4)
@ControllerAdvice与Spring MVC控制器特别相关,因此您不能在任意bean上使用它。您可能正在寻找的是使用@Aspect的常规Spring AOP支持。
@Aspect