错误的使用
@Around(value = "args(java.lang.String)")
args 单独使用,会导致tomcat 启动异常
基本类型和自定义类型都会跑出这个异常
Unable to start web server; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'tomcatServletWebServerFactory' defined in class path resource
正确的用法 :限定 aop 的范围 ,然后使用args
@Around(value = "execution(* com.service.Demo.*(..))&& args(java.lang.String)")
@Around(value = " execution(* com.service.Demo.*(..))&& args(com.vo.DoctorAdviceVO)")