我跟踪了手持器窃听器的文件。注意到在新版本的“春天”中,“配置的拦截器将适用于用附加说明控制器方法处理的所有请求”。
The following is in an xml configuration file:
我有一个附加说明的控制器 开始像这样:
""https://i.sstatic.net/8FmTa.png" alt="此处输入图像描述"/"
当我要求一个执行控制器代码的URL时, 我的拦截密码从来没有被调用过。 有人能解释为什么吗?
拦截密码是:
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.springframework.web.servlet.handler.HandlerInterceptorAdapter;
public class DomainNameInterceptor extends HandlerInterceptorAdapter {
public boolean preHandle(HttpServletRequest request,
HttpServletResponse response, Object handler)
throws Exception {
System.out.println("Why is this not called?");
return true;
}
}
I was using the following documentation: Spring Core 3.1.x Documentation
我搜索了手持器窃听器 并效仿了包含链接内的文件里给出的榜样