RequestParam

· 🍵 java
📌 @RequestParam 1. @RequestParam을 생략하는 경우 // public String main2 (@RequestParam(name="year", required=false) String year) public String main2 (String year) 위의 두 문장은 같은 문장이며, @RequestParam은 생략 가능하다. required는 필수 여부 나타내고 위와 같은 경우에는 필수입력이 false이므로, year 값을 입력해주지 않아도 된다. 사용자가 주소를 입력할 때의 예시는 다음과 같다. // http://localhost/ch2/requestParam2 --->> year = null // http://localhost/ch2/requestParam2?year -->..
c0zi
'RequestParam' 태그의 글 목록