如何处理除资源映射文件夹之外的所有 URL 请求?
在这个例子中,我处理了所有路径(这就是我想要的),但现在我无法访问资源文件夹,即使我
<resources mapping="/resources/**" location="/resources/" />
在里面设置dispatcher-servlet.xml
@RequestMapping(method=RequestMethod.GET)
public String iallURL(HttpServletRequest request, Writer writer) {
//read all paths
return "some";
}
有没有办法解决这个问题?