❕ Controller의 파라미터 수집 넘어오는 파라미터의 이름과 매개변수의 이름값이 동일해야 바인딩이 잘됨 원하는 데이터 타입으로 지정 DTO, 배열, List 등 으로도 받을 수 있음 @RequestMapping("hello.ex") public String hello(String id, int pw) { // .../hello.ex?id=java&pw=1234 요청 System.out.println("id : " + id); System.out.println("pw : " + (pw+1)); return "/WEB-INF/views/spring02/hello.jsp"; } 💻 console 출력 더보기 ❕ DTO 타입으로 파라미터 수집 @RequestMapping("hello1.ex") public..