一般用注解配置
@Transactional(readOnly=true,propagation=Propagation.REQUIRED, isolation=Isolation.DEFAULT
通过代理实现了原目标类和新添加的类中的目标方法
如下:原目标类是:RoleServiceImp 新添加类是:VerifyInterceptorImpl(验证role是否为空)
因为经过代理配置之後,RoleSerivceImpl这个类实现了接口VerifyInterceptor,采用VerifyInterceptorImpl的实现
作为实现这个接口的默认实现
“+”:增强类 defaultImpl :表示默认需要添加新的类