「Spring MVC」パラメータをバリデーションするサンプル

サンプルコード
public class UserManageAction {

@RequestMapping(path = “/test/{username:[a-zA-Z]+}", method = RequestMethod.GET)
public String test(@PathVariable String username) {

return “ユーザー名:"+username;
}
}

Java

Posted by arkgame