我在使用Spring MVC @PathValue时遇到过类似的问题,但是没有一个在线解决方案可以解决这个问题。
我目前正在开发一个应用程序,用户将输入一个URL,而@RequestParam似乎会截断传入的URL和#。
@RequestMapping(value = "/route/path", method = RequestMethod.GET, produces = "application/json")
public Value method(@RequestParam(value="url") String url, HttpServletRequest request) throws Exception {
//execute code
现在例如,如果有人要传入localhost:8080 / route / path?url = https://css-tricks.com/hash-tag-links-padding/#article-header-id-0 查询将被截断为url = https://css-tricks.com/hash-tag-links-padding/
“&”似乎也发生了同样的事情同样。我在WebMvcConfigurerAdapter中尝试了围绕正则表达式,Bean配置和覆盖configurePathMatch的无数解决方案。
还有其他人有这个问题吗?如果是这样,你找到了解决方法吗?谢谢你!