为了账号安全,请及时绑定邮箱和手机立即绑定

关于spring boot url路径匹配斜杠“/”问题?

关于spring boot url路径匹配斜杠“/”问题?

函数式编程 2018-08-10 16:00:27
地址1:http://localhost:8762/hello地址2:http://localhost:8762///hello访问1 和访问2结果一样。期望的是访问2返回404.相关代码:@RestControllerpublic class HelloController {    @GetMapping("hello")     public String index() {        return "Hello World";     } }@SpringBootApplicationpublic class EurekaClientApplication extends WebMvcConfigurationSupport {     public static void main(String[] args) {        SpringApplication.run(EurekaClientApplication.class, args);     }    @Override     protected void configurePathMatch(PathMatchConfigurer configurer) {         configurer.setUseSuffixPatternMatch(false)                 .setUseTrailingSlashMatch(false);     } }
查看完整描述

1 回答

?
慕尼黑5688855

TA贡献1848条经验 获得超2个赞

官方文档

查看完整回答
反对 回复 2018-08-12
  • 1 回答
  • 0 关注
  • 3048 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信