「Spring」@RequestMappingにvalue、method、paramを利用する
サンプルコード
@RequestMapping(params = { "method=update" }, value = { "/userManage" }) public String update() throws Exception { // ユーザ情報更新 updateUser(); //do some code return "userManage/userManage"; }
Coding Changes the World
サンプルコード
@RequestMapping(params = { "method=update" }, value = { "/userManage" }) public String update() throws Exception { // ユーザ情報更新 updateUser(); //do some code return "userManage/userManage"; }