作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想创建一个 获取 将文件路径作为路径变量的请求。
如 Spring 文档中所述,发现 here ,这应该可以通过使用以下内容:/resources/{*path}。
我正在使用使用 Spring 5 的 Spring Boot 2.1.2。
但是,当我像这样设置 Controller 方法时,请求与路由不匹配。预期的匹配路径将是例如/resources/some/filepath 这应该导致 PathVariable“路径”为/some/filepath
@GetMapping("/resources/{*path}")
public String content(@PathVariable String path) {
return null;
}
最佳答案
在 Common Application properties在 Spring 文档中有一个名为 的属性。 spring.mvc.pathmatch.matching-strategy ,用作“根据注册映射匹配请求路径的策略选择”。
默认值(截至目前)为 Ant 路径匹配器 ,并且由于您想使用 PathPattern,因此您需要在 application.properties 文件中写入:
spring.mvc.pathmatch.matching-strategy=路径模式解析器
关于java - 如何应用 Spring 5 中引入的 PathPatternParser?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55457184/
我想创建一个 获取 将文件路径作为路径变量的请求。 如 Spring 文档中所述,发现 here ,这应该可以通过使用以下内容:/resources/{*path}。 我正在使用使用 Spring 5
我是一名优秀的程序员,十分优秀!