springboot使用@PathVariable路径参数,当请求路径中含有【.】符号,点符号后面的会被截断,解决方法如下:
解决办法:
- 添加
:.+
在逗号分隔处;
@GetMapping("video/{fileName:.+}")
public void video(@PathVariable(value = "fileName") String fileName, HttpServletResponse response) throws IOException {
......
}