웹 & 프레임워크

getAttribute(), getParameter() 차이점

늘근이 2014. 5. 14. 08:59

getParameter(name)

getParameterValues(name)

request 내부객체의 메소드로써

페이지로 들어오는 요청 데이터를 나타냄.

브라우저에서 내려온 데이터.

HTML등에서 폼 형식으로 넘어온다면, (클라->서버) getParameter로 받는다. 


setAttribute(key, value, scope), 

getAttribute(key, scope)등은

PageContext클래스의 메소드로써 다른 내부 객체를

액세스할 수 있게 하는 객체임. 서버에서 필요에 의해 만들어낸거,.

대부분 서버->클라로 객체를 보낼때 사용함

'웹 & 프레임워크' 카테고리의 다른 글

Oracle등의 JNDI설정할때 Connection pool관련  (0) 2014.05.14
session invalidate  (0) 2014.05.14
Request, Session, Application  (0) 2014.05.14
JSP의 include방식  (0) 2014.05.14
expression tag대신 action tag로 표현하기  (0) 2014.05.14