Spring Boot rest url中的前斜杠(/)和特殊字符

jyztefdp  于 2022-12-23  发布在  Spring
关注(0)|答案(1)|浏览(144)

静态Web服务:GetMapping url有一个应该作为路径变量传递的变量,但是这个变量包含了前斜杠和特殊字符。关于如何在springboot中处理这个问题有什么建议吗?

@GetMapping(value = “/test/{id}”)
Public TestClass getData(@PathVariable(“id”)){
   return testService.getDataService(id);
}

此处路径变量“id”值为“00/01*1”

o2rvlv0m

o2rvlv0m1#

请查看[https://www.baeldung.com/spring-slash-character-in-url][1],也许可以使用@RequestParam(“param”)注解作为请求处理程序

相关问题