Servlet & Jsp

[JSP에서 JSTL사용하기 설치편] - Head Frist Servlet & Jsp

사과씨앗 2020. 12. 28. 20:01
728x90
반응형

안녕하세요 이번 글에서는 JSTL함수의 사용법에 대해 알아보겠습니다.

 

1. 사용방법

 

jstl을 사용하기 위해선 라이브러리를 추가해 주어야 합니다.

 

링크 : tomcat.apache.org/download-taglibs.cgi

 

Apache Tomcat® - Apache Taglibs Downloads

Welcome to the Apache Taglibs download page. This page provides download links for obtaining the latest version of the Apache Standard Taglib, as well as links to the archives of older releases. You must verify the integrity of the downloaded files. We pro

tomcat.apache.org

 

톰캣 사이트에 접속하여 왼쪽 메뉴바 에서 Taglibs 클릭

 

 

다운로드 클릭

 

impl에 있는 jar 파일을 다운받아 줍니다.
프로젝트의 WEB-INF 밑 lib 폴더 안에 다운받은 jar 파일을 넣어 줍니다.

<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>

 

사용할 jsp안에 지시자인 taglib를 사용하여 위 코드를 선언하여 줍니다. 

 

다음 글에서 사용방법들을 알아보겠습니다.

 

감사합니다.

728x90
반응형