Python 官方文档:入门教程 => 点击学习
目录spring mvc @PathVariable / 带斜杠方式获取实例springMVC @PathVariable中间带/问题处理问题解决思路spring mvc @Path
遇上这个问题,百度Google了一下,抄袭里面的内容,可以实现,在此备忘
@RequestMapping(value = "/download/{value1}abc/xiaoming/h5/user.JSON/get
*/
@ResponseBody
@RequestMapping(method=RequestMethod.POST ,value="/abc/{username}/{resourceUrl}/{methodName}")
public String dubboMock(httpservletResponse response,@PathVariable String username,@PathVariable String resourceUrl,@PathVariable String methodName){
}
3、放弃使用PathVariable,手动去处理
abc/xiaoming/h5/user.json/get
*/
@ResponseBody
@RequestMapping(method=RequestMethod.POST ,value="/abc/**")
public String dubboMock(HttpServletResponse response,HttpServletResponse request){
String url = request.getRequestURI();
//处理url
}
以上为个人经验,希望能给大家一个参考,也希望大家多多支持编程网。
--结束END--
本文标题: spring mvc中@PathVariable / 带斜杠方式获取
本文链接: https://lsjlt.com/news/133322.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0