gpt4 book ai didi

java - RequestMapping 和源路径

转载 作者:行者123 更新时间:2023-12-02 06:42:59 26 4
gpt4 key购买 nike

如何处理除资源映射文件夹之外的所有 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";
}

有什么办法可以解决这个问题吗?

最佳答案

目前,我只能建议您将 @RequestMapping 更改为 / 值。

@RequestMapping(value = "/", method=RequestMethod.GET)
public String iallURL(HttpServletRequest request, Writer writer) {
//read all paths
return "some";
}

另一个解决方案是为资源处理程序设置顺序。

<resources order="-1" mapping="/resources/**" location="/resources/" />

order 值为负数,因为 Controller 方法的 RequestMappingHandlerMapping 实例默认为 0。顺序首先评估最小的。

关于java - RequestMapping 和源路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18938651/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com