$Tomcat\conf\Catalina\localhost 의 위치에 Default 로 설치된 admin.xml 파일을 복사하여
파일명을 원하는 컨텍스트명으로 변경한다.
예제와 같이 http://localhost:8080/client/와 같은 컨텍스트명을 원하면 client.xml로 한다.
client.xml 파일의 내용은 다음과 같다.
----[ client.xml ]----------------------------------
<Context
docBase="E:\workspace\eclipse\tomcatClient"
privileged="true"
reloadable="true">
</Context>
reloadable = true 는 클래스 변경시 자동반영 옵션이다..
--------------------------------------------------
docBase 의 위치는 소스파일(물리적인 공간) 의 위치를 입력한다.
Context 추가 후 테스트를 위해 JSP 파일을 생성한다.
테스트를 위한 index.jsp 파일의 소스는 다음과 같다.
----[ index.jsp ]-----------------------------------
<%@ page contentType="text/html; charset=euc-kr" %>
<HTML>
<HEAD>
<TITLE> New Context Client </TITLE>
</HEAD>
<BODY>
Hello New Context ~~~ client : 안녕
<%
out.println("ContextPath : " + request.getContextPath());
%>
</BODY>
</HTML>
--------------------------------------------------
위의 내용을 실행한 결과는 다음과 같다.
Context 추가 완료~!!
http://www.dude.co.kr
댓글 없음:
댓글 쓰기