静态Web服务:GetMapping url有一个应该作为路径变量传递的变量,但是这个变量包含了前斜杠和特殊字符。关于如何在springboot中处理这个问题有什么建议吗?
@GetMapping(value = “/test/{id}”)
Public TestClass getData(@PathVariable(“id”)){
return testService.getDataService(id);
}
此处路径变量“id”值为“00/01*1”
静态Web服务:GetMapping url有一个应该作为路径变量传递的变量,但是这个变量包含了前斜杠和特殊字符。关于如何在springboot中处理这个问题有什么建议吗?
@GetMapping(value = “/test/{id}”)
Public TestClass getData(@PathVariable(“id”)){
return testService.getDataService(id);
}
此处路径变量“id”值为“00/01*1”
1条答案
按热度按时间o2rvlv0m1#
请查看[https://www.baeldung.com/spring-slash-character-in-url][1],也许可以使用@RequestParam(“param”)注解作为请求处理程序