JSP

Development/JSP & Servlet 2012. 2. 5. 10:06

jsp는 java servlet 보다 늦게 등장했다.







자바 서버 페이지(JavaServer Pages, JSP)는 HTML내에 자바 코드를 삽입하여 웹 서버에서 동적으로 웹 페이지를 생성하여 웹 브라우저에 돌려주는 언어이다. Java EE 스펙 중 일부로 웹 애플리케이션 서버에서 동작한다.

자바 서버 페이지는 실행시에는 자바 서블릿으로 변환된 후 실행되므로 서블릿과 거의 유사하다고 볼 수 있다. 하지만, 서블릿과는 달리 HTML 표준에 따라 작성되므로 웹 디자인하기에 편리하다. 이와 비슷한 구조인 것인 PHPASPASP.NET 등도 있다.

아파치 스트럿츠나 자카르타 프로젝트의 JSTL 등의 JSP 태그 라이브러리를 사용하는 경우에는 자바 코딩없이 태그만으로 간략히 기술이 가능하므로 생산성을 높일 수 있다.

[편집]동작구조

클라이언트에서 서비스가 요청되면, JSP의 실행을 요구하고, JSP는 웹 애플리케이션 서버의 서블릿 컨테이너에서 서블릿 원시코드로 변환된다. 그 후에 서블릿 원시코드는 바로 컴파일된 후 실행되어 결과를 HTML 형태로 클라이언트에 돌려준다.

[편집]버전의 역사

자바 서버 페이지 API 역사
자바 서버 페이지 version발표자바 플랫폼중요한 변화
JSP 2.1JSR 245
JSP 2.0JSR 152
JSP 1.2JSR 53

[편집]바깥고리







JavaServer Pages ( JSP )는 HTML 내에 Java 코드를 묻어두고, Web 서버 에서 동적으로 웹 페이지 를 생성하여 클라이언트에 반환 기술한다.

목차

  [ 숨기기 ] 

개요 편집 ]

Java 코드는 <% 와 %> 기호로 둘러싸인 부분에 쓴다. HTML에 스크립트가 단편적으로 나타나기 때문에이 기법을 스크립트 릿이라고 부른다. 이보다 프로그램 코드를 태그에 진단하는 수 있기 때문에 프로그램과 디자인의 공존있다. 정의 된 커스텀 태그 라이브러리를 사용하면 스크립트 릿을 사용하지 않고 자신의 태그 코드를 포함 할 수있다.

서블릿 기능의 하나로서 구현되어있다.

서블릿과 달리 HTML에서 디자인 부분과 프로그램 부분을 나누어 쓰기 위하여 어느 정도까지 웹 디자이너의 부담을 줄일 수있다. 또한 정적 출력이 많은 경우에 적합하다 [1] . 비슷한 기술로 PHP , ASP , ASP.NET 등이있다.

클라이언트에서 JSP의 실행이 요청되면 애플리케이션 서버 의 서블릿 컨테이너 는 JSP 소스 파일을 서블릿 소스 코드로 변환한다. 그리고 또한 그 소스 코드를 그 자리에서 컴파일하고 실행하고 결과를 클라이언트에 답장한다. 따라서 처음에는 컴파일 시간이 걸리지 만 일단 컴파일이 실행되면 2 번째 이후는 필요 없기 때문에 결과적으로 액세스 속도가 빨라진다.

Apache Struts , Jakarta Project JSTL ( JavaServer Pages Standard Tag Library 영어 ) ​​) 등의 JSP 커스텀 태그 라이브러리를 이용하여 스크립트 렛을 기술 할 필요를 없애고 개발 효율을 높일 수도있다.

Model View Controller 아키텍처는 JSP를 View, Java Servlet 을 Controller, JavaBeans 를 Model로 시스템을 만드는 경우가 많다.

구문 편집 ]

태그 편집 ]

HTML에 다음 특수 태그를 설명 할 수있다.

JSP 태그
이름태그설명
지시문<% @ 지시어 %>이 JSP 파일을 처리 할 때 속성을 Web 컨테이너에 전달
선언<%! 선언 %>JSP에서 사용하는 변수와 메소드를 선언하는
스크립트 릿<% Java 코드 %>태그에 Java 코드를 자유롭게 작성할
<% = 표현식 %>식의 평가 결과를 HTML에 출력
액션<jsp:아쿠숀名>JSP에서 잘 수행 할 작업을 태그로 짧게 기술하는
댓글<% - 주석 - %>JSP로 코멘트를 작성할

지시문 편집 ]

지시문의 종류로는 다음이있다.

지시문의 종류
이름설명
pageJSP 파일의 인코딩과 JSP 프로그램의 코딩에 필요한 import 문장, 세션 관리를<% @ page contentType = "text / html; charset = Windows-31J"pageEncoding = "Windows-31J"%>
include텍스트 파일 및 기타 JSP 파일을 포함한다. 포함은 JSP에서 Servlet으로 변환 될 때 일어난다. 파일 확장자로 JSP를 사용하지 않고 다른 확장자를 사용한다. 일반적으로 '. jspf "(JSP Fragment)가 사용된다.<% @ include file = "header.jspf"%>
taglib사용자 정의 태그를 사용할 수 있도록 설정을 할<% @ taglib uri = "http://www.sample.com/tags/test "prefix ="tst "%>

액션 편집 ]

액션의 종류로는 다음과 같은 것이있다.

jsp : include
jsp : param
jsp : forward
jsp : plugin
jsp : fallback
jsp : getProperty
jsp : setProperty
jsp : useBean

암시 개체 편집 ]

Java의 코드에서 다음 변수를 미리 유효한 상태 (암시 적 개체로)에서 사용할 수있다.

암시 개체
변수 이름설명
outjavax.servlet.jsp.JspWriter 클래스의 개체 변수
requestjavax.servlet.http.HttpServletRequest 클래스의 개체 변수
responsejavax.servlet.http.HttpServletResponse 클래스의 개체 변수
pageContextjavax.servlet.jsp.PageContext 클래스의 개체 변수
sessionjavax.servlet.http.HttpSession 클래스의 개체 변수
applicationjavax.servlet.ServletContext 클래스의 개체 변수
configjavax.servlet.ServletConfig 클래스의 개체 변수
pagejavax.servlet.jsp.HttpJspPage 클래스의 개체 변수
exceptionjava.lang.Throwable 클래스의 개체 변수

JSP2.0 편집 ]

JSR152에 규정 된 사양으로 기존의 스크립트 릿에서 프로그램을 작성할뿐만 아니라 Expression Language (표현 언어)를 도입하여 시정 뛰어난 JSP 파일을 작성할 수 있도록 한 것. Expression Language는 $ {}로 표현한다.

$ {sessionScope.user.id}

Expression Language에서는 다음과 같은 암시 개체가 유효하다.

암시 개체
변수 이름설명
pageContextjavax.servlet.jsp.PageContext 클래스의 개체 변수
pageScopepage 범위에서 개체를 검색
requestScoperequest 범위에서 개체를 검색
sessionScopesession 범위에서 개체를 검색
applicationScopeapplication 범위에서 개체를 검색
param요청 매개 변수를 저장하는 Map 객체
paramValues여러 값을 가진 요청 매개 변수를 저장할 String 형 배열
header요청 헤더 값을 저장하는 Map 객체
headerValues여러 값을 가진 요청 헤더를 포함하는 String 배열
cookie쿠키를 저장하는 Map 객체
initParam컨텍스트 초기화 파라미터를 저장하는 Map 객체

역사 편집 ]

역사
버전JSR출시
1.01999 년 6 월 2 일
1.11999 년 12 월 17 일
1.2532001 년 9 월 25 일
2.01522003 년 11 월 24 일
2.12452006 년 5 월 11 일
2.22009 년 12 월 10 일

주석 편집 ]

  1. ^ 서블릿에서 println 메소드가 빈번하게 나타나 가독성이 떨어지기 때문에

관련 항목 편집 ]

외부 링크 편집 ]





JSP
Filename extension.jsp
Internet media typeapplication/jsp
Latest release2.2
Standard(s)JSR 245
WebsiteJavaServer Pages Technology

JavaServer Pages (JSP) is a technology that helps software developers create dynamically generated web pages based on HTMLXML, or other document types. Released in 1999 by Sun Microsystems,[1] JSP is similar to PHP, but it uses the Java programming language.

To deploy and run JavaServer Pages, a compatible web server with a servlet container, such as Apache Tomcat or Jetty, is required.

Contents

  [hide

Overview[edit]

The JSP Model 2 architecture.

Architecturally, JSP may be viewed as a high-level abstraction of Java servlets. JSPs are translated into servlets at runtime; each JSP's servlet is cached and re-used until the original JSP is modified.[2]

JSP can be used independently or as the view component of a server-side model–view–controller design, normally with JavaBeans as the model and Java servlets (or a framework such as Apache Struts) as the controller. This is a type of Model 2 architecture.[3]

JSP allows Java code and certain pre-defined actions to be interleaved with static web markup content, with the resulting page being compiled and executed on the server to deliver a document. The compiled pages, as well as any dependent Java libraries, use Java bytecode rather than a native software format. Like any other Java program, they must be executed within a Java virtual machine (JVM) that integrates with the server's host operating system to provide an abstract platform-neutral environment.

JSPs are usually used to deliver HTML and XML documents, but through the use of OutputStream, they can deliver other types of data as well.[4]

The Web container creates JSP implicit objects like pageContext, servletContext, session, request & response.

Syntax[edit]

JSP pages use several delimiters for scripting functions. The most basic is <% ... %>, which encloses a JSP scriptlet. A scriptlet is a fragment of Java code that is run when the user requests the page. Other common delimiters include <%= ... %> for expressions, where the value of the expression is placed into the page delivered to the user, and directives, denoted with <%@ ... %>.[5]

Java code is not required to be complete or self-contained within its scriptlet element block, but can straddle markup content providing the page as a whole is syntactically correct. For example, any Java if/for/while blocks opened in one scriptlet element must be correctly closed in a later element for the page to successfully compile. Markup which falls inside a split block of code is subject to that code, so markup inside an if block will only appear in the output when the if condition evaluates to true; likewise, markup inside a loop construct may appear multiple times in the output depending upon how many times the loop body runs.

The following would be a valid for loop in a JSP page:

<p>Counting to three:</p>
<% for (int i=1; i<4; i++) { %>
    <p>This number is <%= i %>.</p>
<% } %>
<p>Done counting.</p>

The output displayed in the user's web browser would be:

Counting to three:
This number is 1.
This number is 2.
This number is 3.
Done counting.

For more examples, see Java Programming/JSP at Wikibooks.

Expression Language[edit]

Version 2.0 of the JSP specification added support for the Expression Language (EL), used to access data and functions in Java objects. In JSP 2.1, it was folded into the Unified Expression Language, which is also used in JavaServer Faces.[6]

An example of EL syntax:

The value of "variable" in the object "javabean" is ${javabean.variable}.

Additional tags[edit]

The JSP syntax adds additional tags, called JSP actions, to invoke built-in functionality.[5] Additionally, the technology allows for the creation of custom JSP tag libraries that act as extensions to the standard JSP syntax.[7] One such library is the JSTL, with support for common tasks such as iteration and conditionals (the equivalent of "if" and "for" statements in Java.)[8]

Compiler[edit]

JavaServer Pages compiler is a program that parses JSPs, and transforms them into executable Java Servlets. A program of this type is usually embedded into the application server and run automatically the first time a JSP is accessed, but pages may also be precompiled for better performance, or compiled as a part of the build process to test for errors.[9]

Some JSP containers support configuring how often the container checks JSP file timestamps to see whether the page has changed. Typically, this timestamp would be set to a short interval (perhaps seconds) during software development, and a longer interval (perhaps minutes, or even never) for a deployed Web application.[10]

Comparison with similar technologies[edit]

JSP pages are similar to PHP pages and ASP.NET Web Forms, in that all three add server-side code to an HTML page. However, all three terms refer to a different component of the system. JSP refers to the JSP pages, which can be used alone, with Java servlets, or with a framework such as Apache Struts. PHP is itself a programming language, designed for dynamic Web pages.[11] ASP.net is a framework comparable to Struts or JavaServer Faces that uses pages called Web Forms.[12]

While JSP pages use the Java language, ASP.NET pages can use any .NET-compatible language, usually C#.

ASP.NET is designed for a Microsoft Windows web server, while PHP and Java server technologies (including JSP) are fairly operating system agnostic.

Caching to improve performance[edit]

The popularity of JavaServer Pages has meant that it is being used quite frequently in developing high-traffic web apps. And, this is causing performance bottlenecks as you try to add more users and transaction load on your JavaServer Pages application. Although, JavaServer Pages application can scale very nicely to multiple web servers, the database server cannot. The main reason for the database becoming a bottleneck is that while you can add more and more servers to the JavaServer Pages application server farm, you cannot do the same at the database tier. This results in limited scalability at the data tier. You can remove these JavaServer Pages Servlets performance bottlenecks by using a distributed cache for storing the frequently used data.

Criticism[edit]

In 2000, Jason Hunter[who?] criticized JSP for either tempting or requiring the programmer to mix Java code and HTML markup, although he acknowledged it would "wean people off" of Microsoft's Active Server Pages. Later, he added a note to his site saying that JSP had improved since 2000, but also cited its competitors, Apache Velocity and Tea.[13]

See also[edit]

Servlet containers[edit]

Java-based alternative[edit]

References[edit]

Further reading[edit]

External links[edit]



출처 - http://en.wikipedia.org/wiki/JavaServer_Pages








출처 - noveljsp2







Posted by linuxism
,