JSTL,EL식>내장객체
get,set Attribute를 담는 것들:
(pageContext, request, session(브라우저별,로그인할 때), application)
EL식 : ${} //setAttribute의 key값을 앞에 적어준다&&.적는 건 멤버필드 명
ex) ${vo.title}
literal의 경우
쿼리스트링 : ${param.no} //setAttribute할 때 key값으로 param 주지 말 것.
pageContext name:A,
for문은 el식으로 못 돌려서 jstl 라이브러리 사용할 것
p.415 참고 / java beans 안 봐도 됨
jstl 1.2 사용방법 검색
https://mvnrepository.com/artifact/javax.servlet/jstl/1.2
begin~end paging 처리시 알아야 함!
{status.index}
<!– 0부터의 순서 –>
{status.first}
<!– 현재 루프가 처음인지 반환 –>
{status.begin}
<!– 시작값 –>
{status.step}
<!– 증가값 –>
출처: https://postitforhooney.tistory.com/entry/JSPJSTL-JSTL-foreach에서의-varStatus-속성-이용 [PostIT]
HTML entity references : https://www.w3schools.com/charsets/ref_html_entities_4.asp
프레임워크와 라이브러리의 차이 :
https://webclub.tistory.com/458