我有这个配置:
<servlet-mapping>
<servlet-name>RestletServlet</servlet-name>
<url-pattern>/*</url-pattern>
</servlet-mapping>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
</welcome-file-list>
我需要排除“/xrebel
”,因为Restlet正在捕获此路径 - 并且无法访问XRebel。但是,我需要将url-pattern
保持为/*
如何才能访问此类/xrebel
路径
答案 0 :(得分:1)
去年开发Web服务时遇到了同样的问题。但经过大量的研究后,我发现这个问题没有简单的解决办法。
相反,我发现的最佳方法是使用前缀servlet URL。
因此,对于您希望由RestletServlet处理的所有映射,为url添加前缀,例如/ rest / *
希望这有帮助。
答案 1 :(得分:0)
一种可能的解决方案是创建一个具有相同url模式的过滤器来拦截请求。
在过滤器中,您可以检查模式是否等于/xrebel
,然后根据需要处理请求。
public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException {
String requri = ((HttpServletRequest) request).getRequestURI().substring(((HttpServletRequest) request).getContextPath().length() + 1);
System.out.println(requri);
if(requri.equals("/xrebel")){
//do something else
}else{
chain.doFilter(request, response); //continue normally
}
}