1. board 프로젝트를 배포해보겠습니다.



2. 해당 프로젝트에 우클릭을 해서 Export > WAR file 을 클릭합니다.



3. 아래와 같이 작성을 한 후 Finish 를 클릭합니다.

* Web Proejct: 해당 프로젝트 이름을 기입합니다.

* Destination: 해당 프로젝트를 WAR 파일로 추출한 후 저장할 경로를 지정합니다.



추출 작업이 완료 후 지정한 경로에 war 파일이 추출되었는지 확인합니다.





* 아래와 같은 에러 발생 시



* 발생 원인

web-app 요소에 반드시 버전을 표기해야만 하므로 발생하는 에러로 web-app 태그에 버전을 명시합니다.



* 조치 사항

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
    id="WebApp_ID" version="2.4">
    <display-name>board</display-name>
    <welcome-file-list>
        <welcome-file>index.html</welcome-file>
        <welcome-file>index.htm</welcome-file>
        <welcome-file>index.jsp</welcome-file>
        <welcome-file>default.html</welcome-file>
        <welcome-file>default.htm</welcome-file>
        <welcome-file>default.jsp</welcome-file>
    </welcome-file-list>
</web-app>
 
cs

* id="WebApp_ID" 의 부분을 version="2.4" 으로 수정 후 저장합니다.



'Tools > Eclipse' 카테고리의 다른 글

웹 어플리케이션, war 파일 추출  (0) 2017.11.02
[에러] Faceted Project Problem  (0) 2017.10.31


* 아래와 같은 에러 발생 시



* 발생 원인




* 조치 사항

프로젝트에 마우스 우클릭을 해서 Properties를 클릭합니다.



Java Compiler를 클릭하여 Java Compiler 버전을 적절하게 설정하고 Apply 혹은 Apply and Close  버튼을 클릭합니다.



Apply and Close 버튼을 클릭 후 아래와 같은 메세지가 출력되는데 변경 사항을 반영하려면 프로젝트를 다시 빌드해야 한다는 안내 메시지이므로 Yes 버튼을 클릭합니다.



+ Recent posts