今天想用AOP 做点东西 然后自定义了一个注解
@Target({ElementType.TYPE, ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
@Before(ValidateInterceptor.class)
@Inherited
@Documented
public @interface Validated {
}
加载方法上面但是并不进入拦截器
项目:JFinal
今天想用AOP 做点东西 然后自定义了一个注解
@Target({ElementType.TYPE, ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
@Before(ValidateInterceptor.class)
@Inherited
@Documented
public @interface Validated {
}
加载方法上面但是并不进入拦截器