SpringBoot 中使用 @PathVariable 注解无法接收中文字符串,英文或数字可以接收,是什么原因?
1、Controller 如下所示:
@GetMapping("/user/{username}")
public Result getUserByName(@PathVariable("username") String username){
User user = userService.getUserByUsername(username);
if(!ObjectUtils.isEmpty(user)){
return Result.success();
}
return Result.fail();
}