springMvc使用注解拦截用户登录状态及自定义解析器
一、使用注解拦截用户登录状态
1.定义Login注解
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface Login {
}
2.定义拦截器
public class UserInterceptor extends HandlerIntercepto...
原创
2019-12-25 14:59:37 ·
424 阅读 ·
1 评论