배치처리 예제 에러
- 작성자 :
- 강*구
- 작성일 :
- 2013-05-06 18:11:08
- 조회수 :
- 2,500
- 구분 :
- 실행환경
- 진행상태 :
- 완료
Q
배치처리 예제
egovframework-example-2.5.0 파일을 import 해서
메이븐 업데이트 후 메이븐인스톨을 시켰는데
-------------------------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-war-plugin:2.1.1:war (default-war) on project egovframework_batch: Error assembling WAR: webxml attribute is required (or pre-existing WEB-INF/web.xml if executing in update mode) -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
-------------------------------------------------------
에러 입니다. 어떻게 해야하나요?
egovframework-example-2.5.0 파일을 import 해서
메이븐 업데이트 후 메이븐인스톨을 시켰는데
-------------------------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-war-plugin:2.1.1:war (default-war) on project egovframework_batch: Error assembling WAR: webxml attribute is required (or pre-existing WEB-INF/web.xml if executing in update mode) -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
-------------------------------------------------------
에러 입니다. 어떻게 해야하나요?
A
안녕하세요. 강상구님.
배치 예제 프로젝트는 test 로 해당 내용을 확인하실 수 있는 예제입니다.
따라서 <b>maven test</b> 를 수행하시면 됩니다.
첨부하신 로그의 내용은
maven install 을 수행하기 위해서는 war 생성을 위해 /WEB-INF/web.xml 형태의 구조를
맞춰주어야한다는 내용으로, /src/main/webapp/WEB-INF/web.xml 을 만들어주시면
maven install 도 수행이 가능합니다.
감사합니다.
배치 예제 프로젝트는 test 로 해당 내용을 확인하실 수 있는 예제입니다.
따라서 <b>maven test</b> 를 수행하시면 됩니다.
첨부하신 로그의 내용은
maven install 을 수행하기 위해서는 war 생성을 위해 /WEB-INF/web.xml 형태의 구조를
맞춰주어야한다는 내용으로, /src/main/webapp/WEB-INF/web.xml 을 만들어주시면
maven install 도 수행이 가능합니다.
감사합니다.