拉长玉米

文章
5
资源
0
加入时间
2年10月21天

springmvc---day2

拦截器开发步骤1:创建拦截器类让类实现HandlerInterceptor接口,重写接口中的三个方法。@Component//定义拦截器类,实现HandlerInterceptor接口//注意当前类必须受Spring容器控制public class ProjectInterceptor implements HandlerInterceptor { @Override //原始方法调用前执行的内容 public boolean preHandle(HttpServ...