有没有办法为Springboot创建一个名为HandlerInterceptor的方法。我想创建一个注释,例如:
@NameBinding
@Target({ElementType.METHOD, ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
public @interface IsAuthenticated {
}
因此,只有具有此注释的请求才会使用带注释的HandlerInterceptor。我已经使用JAX RS ContainerRequestFilter完成了这项工作,但现在我想为Spring做同样的事情。
提前致谢