일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- JavaScript
- profile
- 단축키
- web.xml
- Mac
- Quartz
- netsh
- maVen
- plugin
- Windows
- 줄바꿈 문자
- IntelliJ
- find
- ssh
- VirtualBox
- Eclipse
- bash
- import
- 네트워크
- resource
- vscode
- grep
- lsof
- xargs
- GIT
- port
- context
- tomcat
- Source
- Windows 10
- Today
- Total
develog
eclipse 에서 maven 프로젝트 생성 본문
Eclipse Java EE IDE for Web Developers
Version: Kepler Release
--------------------------------------
▶ Dynamic Web Project 생성
- Source folders 수정
- src 삭제
- src/main/java 추가
- src/main/resources 추가
- src/test/java 추가
- src/test/resources 추가
- Default output folder 변경 : target/classes
▶ Maven Project 로 변경
- 프로젝트 선택 - 마우스 우클릭 - Configure - Convert to Maven Project
▶ pom.xml 수정
- <warSourceDirectory>WebContent</warSourceDirectory> 삭제
▶ Project Properties 수정
- <build> 모두 삭제
▶ 폴더 구조 변경
- src/main/webapp 폴더 생성
- WebContent 폴더 컨텐츠 이동 -> src/main/webapp
- /WebContent 폴더 삭제
▶ Project Properties 수정
- Deployment Assembly
- Add - Folder - src/main/webapp 선택 - Finish (Deploy Path 는 '/'로)
- Advanced - Folder for deployment descriptor : /src/main/webapp 선택
- /WebContent 삭제
▶ Project 마우스 우클릭 - Maven - Update Project
▶ Run as - Maven clean
▶ Run as - Maven build
'IDE > eclipse' 카테고리의 다른 글
[eclipse] previous version, 이전 버전 다운로드 (0) | 2013.08.17 |
---|---|
eclipse 에 maven plugin 설치 (0) | 2013.08.13 |
eclipse 에서 maven 프로젝트 만들기 (0) | 2013.08.12 |
Eclipse 에서 Dynamic Web Project, context root 를 / 로 변경 (0) | 2013.08.06 |
eclipse 에서 heap size 늘리기 (0) | 2013.05.08 |