私はget request param 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;
}
それはうまくいきますが、このようにURLを変更すると localhost:8080/karmaFriend/register/abc//abc@abc.com
その関数は呼び出されません...同じ関数を呼び出す他の方法はありますか??