JSP Directives

이기현·2020년 1월 9일
0

2020Camp

목록 보기
2/16

JSP directives

jsp 지시문은 웹 컨테이너에 JSP 페이지를 상응하는 서블릿으로 변환하는 방법을 알려주는 메시지입니다.

There are three types of directives:

  • page directive
  • include directive
  • taglib directive

JSP page directive

syntax : <%@ page attribute="value" %>

1.import()

The import attribute is used to import class,interface or all the members of a package.It is similar to import keyword in java class or interface.

<%@ page import="java.util.Date" %>   
	Today is: <%= new Date() %>

2.contentType()

작성할 문서의 타입 지정

<%@ page contentType="text/html; charset=euc-kr" %>

3.buffer()

The buffer attribute sets the buffer size in kilobytes to handle output generated by the JSP page.The default size of the buffer is 8Kb.

<%@ page buffer="16kb" %> 

4.isThreadSafe()

  • JSP 페이지에서 다중 쓰레드(Thread)를 사용할 수 있는가를 지정하는 속성
  • true : 여러 사용자의 요청을 동시에 받아들일 수 있다.
  • false : 다수 사용자의 요청을 동시에 처리하지 않고 요청한 순서대로 처리한다.
<%@ page isThreadSafe="false" %>

JSP Include Directive

JSP 페이지에서는 여러 JSP 페이지에서 공통적으로 포함하는 내용이 있을 때 매번 입력하지 않고 별도의 파일로 만들어 두었다가 필요한 JSP 페이지내에 추가를 할 수 있는 기능을 제공하는데 이것이 include Directive이다.

syntax : <%@ include file="resourceName" %>

출처: https://yuihorie1004.tistory.com/entry/JSP-include-Directive에-대해서 [꿈꾸는 개발자..]

JSP Taglib Directive

이부분은 JSPL에서 좀 더 알아보고 작성하자.

profile
실력을 쌓아가는 하루하루

0개의 댓글