http://localhost:8080/request-param?username=hello&age=20&username=hello2 를 적용했을때 아래처럼 결과가 나온다.
[전체 파라미터 조회] - start
forEachRemaining을 이용해서 모든 내용의 파라미터를 조회한다.
[단일 파라미터 조회]
getParameter를 이용해 파람 하나 조회가 가능하다.
[이름이 같은 복수 파라미터 조회]
같은 파라미터로 여러개가 들어올 수 있는데 이때는
getParameterValues를 이용하여 조회 가능하다.