@PathVariable
Posted jingyi17
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了@PathVariable相关的知识,希望对你有一定的参考价值。
@PostMapping(name="获取用户信息", value="/getUser/{userId}") public Object getUser(@PathVariable("userId") String userId) { try { User user = userService.getUser(userId); return user; } catch (Exception e) { logger.error("获取用户信息异常 " + e.getMessage()); return "获取用户信息异常"); } }
以上是关于@PathVariable的主要内容,如果未能解决你的问题,请参考以下文章
Spring Controller 中的 PathVariable
浅析 @PathVariable 和 @RequestParam