JSP : Action Tags
·
WEB/2020_webCamp
Action tags : 자바 코드를 줄여 태그가 많은 jsp 파일에서 가독성을 높이기 위해 만들어진 태그 XML 문법을 따름 브라우저 소스 보기에 보이지 않음 (서버에서 해석되어 자바 코드로 변환되기 때문) 반드시 종료 태그 사용 페이지 사이들의 흐름 제어하고 java bean 사용하는 데 이용 JSP Action Tags Description jsp:forward forwards the request and response to another resource. jsp:include includes another resource. jsp:useBean creates or locates bean object. jsp:setProperty sets the value of property in bean ob..