是否可以将@Around建议添加到@RestController?
我尝试过但没有成功。
以下是我的简单日志记录方面
@Aspect
public class LoggingAspect {
@Around("execution(public * zbc.sxw.rest.*.*(..))")
public void logRestCall(ProceedingJoinPoint joinPoint) throws Throwable
{
System.out.println("Write code for before advise");
joinPoint.proceed();
System.out.println("Write code for after advise");
}
}
其余包下的类都使用@RestController注释进行注释。
如果我改变.rest。到.ctrl。其中包括@Controller注释类,Aspect工作正常。
知道@RestController有什么问题吗?
感谢。