jsp
-
JSP 페이지 구성요소Study/JSP 2014. 10. 12. 20:30
주석문 JSP 페이지 구성요소디렉티브(Directive) - 지시자pageJSP페이지에 대한 정보를 지정, JSP가 생성하는 문서의 타입. 출력 버퍼의 크기, 에러 페이지 등 JSP 페이지에서 필요로 하는 정보를 입력한다%@는 JSP에서 지시자(directive)라 한다. language="java"는 JSP에서 자바문법을 따라간다는 뜻.contentType="text/html;charset=UTF-8"는 웹 상에 출력되는 언어 인코딩타입을 설정taglibJSP페이지에서 사용할 태그 라이브러리를 지정한다JSTL(커스텀태그) 태그 라이브러리 부분이다. JSTL태그는 톰캣에서 자체적으로 지원해 주지 않기 때문에 외부 라이브러리가 필요하다.jakarta.apache.org사이트에서 jstl.jar,standa..
-
Include DirectiveStudy/JSP 2014. 9. 30. 23:44
http://www-it.fmi.uni-sofia.bg/courses/WDB/references/JSP%20syntax/syntaxref07.html Include DirectiveIncludes a static file in a JSP file, parsing the file's JSP elements.Syntax Examplesinclude.jsp: The current date and time are date.jsp: Displays in the page: The current date and time are Aug 30, 1999 2:38:40 DescriptionThe directive inserts a file of text or code in a JSP file at translation t..
-
<jsp:include>Study/JSP 2014. 9. 30. 23:43
http://www-it.fmi.uni-sofia.bg/courses/WDB/references/JSP%20syntax/syntaxref03.html Includes a static file or sends a request to a dynamic file.Syntax or + Examples DescriptionThe element allows you to include either a static or dynamic file in a JSP file. The results of including static and dynamic files are quite different. If the file is static, its content is included in the calling JSP file..
-
4. Tomcat 8.0 설치Archive/설치-세팅 2014. 8. 25. 10:45
톰캣 다운로드 1. http://tomcat.apache.org/ 에 접속해서 왼쪽 Download 의 Tomcat 8.0 을 클릭 2. 화면 하단에 보이는 8.0.9 의 Binary Distributions 의 Core 에서 zip(또는 자신의 윈도우 비트에 맞는 zip) 파일을 다운로드 3. 다운받은 apache-tomcat-8.0.9.zip 파일의 압축을 푼 후 나온 apache-tomcat-8.0.9 폴더를 찾기 쉽게 C:\ 등으로 옮긴다(필자는 C:\Web\apache-tomcat-8.0.9 에 폴더를 두었다) 이클립스와 톰캣의 연동4. 이클립스를 실행한 뒤 오른쪽 위의 Perspective를 Java EE로 바꾼 뒤 하단 창의 Servers 탭을 클릭 No servers are availavl..
-