Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 즐겨찾기 추가
- flash
- 국민연금
- 블로그 방문자 늘리기
- MySQL
- Administrator
- HTML
- MSSQL
- 블로그 조회수
- 블로그 조회수 늘리기
- PHP
- Eclipse
- 인테리어그림
- 소득세
- oralce
- IIS
- Jrun
- samba
- 블로그 수익화
- 블루수국그림
- 갑근세
- Jexcel
- CVS
- CSS
- Vista
- 에덴미술
- Adobe pdf reader
- JSP
- JavaScript
- .NET
Archives
- Today
- Total
I LOVE EJ
JSP] 가상 디렉토리 설정 본문
목적 :
항상 webapps폴더의 하위 폴더로 추가할수는 없음
방법:
~\jakarta-tomcat-5.0.xx\conf\server.xml 파일에 웹 어플리케이션 정보 추가
예제:
http://localhost:8080/test를 c:\home\test폴더로 지정
=======================================================================================================
- <Host name="localhost"appBase="webapps"unpackWARs="true"autoDeploy="true"xmlValidation="false"xmlNamespaceAware="false">
- <!--
Defines a cluster for this node, By defining this element, means that every manager will be changed. So when running a cluster, only make sure that you have webapps in there
.....
<Context path="/test" docBase="c:\home\test" />
</Host>
===============================================================================
주의:
class파일과 xml파일 수정시 톰캣서버 재시작
'Os & Server > Tomcat' 카테고리의 다른 글
Tomcat 서버에서 가상 호스트 설정법과 각 호스트별 Manager 기능 설정 (0) | 2008.11.14 |
---|---|
IIS(windows)와 Tomcat 연동 (0) | 2007.10.15 |
톰캣 Root 디렉토리 변경법 (0) | 2007.10.15 |
[아파치*톰캣] 웹사이트에 도메인 추가하기 (0) | 2007.10.15 |
Servlet tomcat-path경로잡기 (0) | 2007.10.15 |