tag library 썸네일형 리스트형 EL로 자바 상수 사용방법 How to reference constants in EL?up vote73down votefavorite37How do you reference an constants with EL on a JSP page?I have an interface Addresses with a constant named URL. I know I can reference it with a scriplet by going: , but how do I do this using EL?jsp constants elshareimprove this questionedited Mar 11 at 8:25 BalusC640k1832244250 7asked Sep 17 '10 at 4:10 tau-neutrino1,3624152 0 possi.. 더보기 tag library function 사용 FromToSum.java package market; public class FromToSum {public static int getFromToSum(int a, int b){int sum = 0;for(int i = a ; iInsert title here1에서 100까지의 합 : ${lo:fromtosum(1,100)}입니다. 100에서 200까지의 합 : ${lo:fromtosum(100,200)}입니다. 더보기 jsp 커스텀태그 1.0 1.2 helloTag hello CustomTag hello hello.HelloTag hello.HelloTEI JSP say 과 같은 식으로 사용가능--> false true 5. 태그 핸들러란? 커스텀 태그의 실제 기능을 정의한 클래스..(없으면 커스텀 태그가 의미가 없겠죠? 기능이 없는 태그라? 헐)그럼 어떻게 태그 핸들러 클래스를 만드는지 알아보도록 합시다. 태그 핸들러 클래스를 만들기 위해서는 태그 TagSuppory또는 BodyTagSupport클래스를 상속받아야 한다.이 2개 클래스는 커스텀 태그에 관련된 중요 패키지인 javax.servlet.jsp.tagext에서 제공하는 인터페이스로 만들어졌다. 1) javax.servlet.jsp.tagext패키지의 인터페이스들. - Bod.. 더보기 이전 1 다음