「Spring MVC」パラメータをバリデーションするサンプル
サンプルコード
public class UserManageAction {
@RequestMapping(path = “/test/{username:[a-zA-Z]+}", method = RequestMethod.GET)
public String test(@PathVariable String username) {
return “ユーザー名:"+username;
}
}
Coding Changes the World
サンプルコード
public class UserManageAction {
@RequestMapping(path = “/test/{username:[a-zA-Z]+}", method = RequestMethod.GET)
public String test(@PathVariable String username) {
return “ユーザー名:"+username;
}
}