@RequestParam 註解(3)
- 2020 年 3 月 18 日
- 筆記
在處理方法入參使用@RequestParam 可以把請求參數傳遞給請求方法:
- value:參數名
- required:是否必須。默認為true,表示請求參數中必須包含對應的參數,若不存在,將拋出異常
// 兩個參數是必須的,必須攜帶參數和參數值 @Controller @RequestMapping("/springmvc") public class HelloWorld { @RequestMapping("/helloparam01") public String testRequestParam(@RequestParam(value="username") String un , // 這個時候兩個參數是必須的,必須攜帶參數和參數值 @RequestParam(value = "age" )int age) { System.out.println("test,username: " + un + ",age : " + age ); return "success"; } }
// 這個時候age參數不是必須的 @Controller @RequestMapping("/springmvc") public class HelloWorld { @RequestMapping("/helloparam02") public String testRequestParam01(@RequestParam(value="username") String un , // 這個時候age參數不是必須的 @RequestParam(value = "age",required = false)Integer age){ System.out.println("test,username: " + un + ",age : " + age ); return "success"; } }
// 參數使用默認值 @Controller @RequestMapping("/springmvc") public class HelloWorld { @RequestMapping("/helloparam03") public String testRequestParam02(@RequestParam(value="username") String un , // 參數使用默認值 @RequestParam(value = "age",required = false,defaultValue = "0")int age){ System.out.println("test,username: " + un + ",age : " + age ); return "success"; } }