Eclipse
- New -> Maven Project -> Create a simple project
- 这时候src/main/webapp下什么也没有
-
右击项目 -> Properties -> Java Build Path -> Libraries
-
选择 Server Runtime后添加Apache Tomcat
IDEA
- File -> New -> Project, 选择Maven, 勾选Create from archetype, 选择webapp
- 命名groupId, artifactId, version后点击Next.
- 此时没有代码目录和资源目录, 在main下创建java, resources目录
- Run -> Edit Configurations...
- 添加tomcat, 并选JRE
- 点击Deployment, 点击+号, 选Artifact, 之后选择自己项目的war exploded
- war是把所有工程打包发布.
- war exploded 是把工程目录移植到tomcat上, 开发时使用exploded, 可以边修改边显示, 方便调整.
Eclipse/IDEA创建maven web工程(三)