Notice
Recent Posts
Recent Comments
Gentle Breeze
[jsp/Servlet] 정리 <1> 본문
정리하기
jdk 1.5 이상 사용시 tomcat 5.0 이상 버전을 사용해 주어야 안정적으로 서버를 구축할 수 있음
tomcat 사용 시 JAVA_HOME, Path 설정을 반드시 잡아 주어야 함
1. Web Server
|_ tomcat 5.5 ㅡ bin : startup, shutdown
|_ conf : 서버의 환경 설정 (server.xml) - eg : 포트 설정
|_ webapps : 웹어플리케이션
|_ WEB-INF
| |_ web.xml
| |_ classes - *.class
|_ *.html, *.jsp...
2. 개발 tool → eclipse로 project 생성하기
① tomcat server 연동 → window - preferences - server
② project 생성 → web - dynamic web project
|_ src - *.java
|_ WebContent ㅡ WEB-INF
| | |_ web.xml
| |_ UI files - *.html, *.jsp...
|_ build
|_ class file 생성
- jsp - <form> 의 action을 통해 server-side file에 접근 - 접근 method : get / post
- server-side의 특정 page는 class file에 접근하여 작업을 수행
- <% %> : Script-Let 영역
<%= %> : Expression 영역
<%@ %> : 지시자 - eg : import, 개발 환경 설정...
- servlet - client의 servlet 접근 요청이 있으면 web.xml의 지정된 url-pattern을 이용하여
servlet이 위치한 물리적 경로를 감추고 작업을 수행
jdk 1.5 이상 사용시 tomcat 5.0 이상 버전을 사용해 주어야 안정적으로 서버를 구축할 수 있음
tomcat 사용 시 JAVA_HOME, Path 설정을 반드시 잡아 주어야 함
1. Web Server
|_ tomcat 5.5 ㅡ bin : startup, shutdown
|_ conf : 서버의 환경 설정 (server.xml) - eg : 포트 설정
|_ webapps : 웹어플리케이션
|_ WEB-INF
| |_ web.xml
| |_ classes - *.class
|_ *.html, *.jsp...
2. 개발 tool → eclipse로 project 생성하기
① tomcat server 연동 → window - preferences - server
② project 생성 → web - dynamic web project
|_ src - *.java
|_ WebContent ㅡ WEB-INF
| | |_ web.xml
| |_ UI files - *.html, *.jsp...
|_ build
|_ class file 생성
- jsp - <form> 의 action을 통해 server-side file에 접근 - 접근 method : get / post
- server-side의 특정 page는 class file에 접근하여 작업을 수행
- <% %> : Script-Let 영역
<%= %> : Expression 영역
<%@ %> : 지시자 - eg : import, 개발 환경 설정...
- servlet - client의 servlet 접근 요청이 있으면 web.xml의 지정된 url-pattern을 이용하여
servlet이 위치한 물리적 경로를 감추고 작업을 수행
'⑥ PreSTC > jsp / Servlet' 카테고리의 다른 글
[Servlet] 인스턴스 변수 (0) | 2008.07.22 |
---|---|
[Servlet] Servlet Life Cycle (0) | 2008.07.22 |
[Servlet] 정리 <2> (0) | 2008.07.21 |
[Servlet] 한글 처리하기 (0) | 2008.07.21 |
[Servlet] 정리 <1> (0) | 2008.07.21 |
Comments