我正在使用这个函数来获取请求参数 spring3 mvc,我的 url 是
本地主机:8080/karmaFriend/register/abc/wq/abc@abc.com
@RequestMapping(value = "/register/{username}/{password}/{email}", method = RequestMethod.GET)
public @ResponseBody ResponseMsg getUserInJSON(@PathVariable String username, @PathVariable String password, @PathVariable String email) {
ResponseMsg responseMsg = CommonUtils.checkParam(username, password, email);
if(responseMsg.getStatus().equalsIgnoreCase("True"))
responseMsg = userService.registerUser(username, password, email);
return responseMsg;
}
它工作得很好,但如果我像这样更改我的网址 localhost:8080/karmaFriend/register/abc//abc@abc.com
那么它不会调用那个函数......还有其他方法可以调用相同的函数吗?