①使用骨架(项目模块)
选择项目骨架(New Module),勾选Create from archetype,选择web项目骨架
删除pom.xml多余的坐标
补全缺失的目录结构
②不使用骨架
New Module,直接next
修改pom.xml,加上<packaging>war</packaging>
然后点击Modules下面的Facets->+->Web添加web目录
集成本地Tomcat:双击shift,搜索edit Configurations->+->Tomcat server(local本地,remote远程) 选择本地->Application server
写自己Tomcat的zip文件(port据自己而定)然后Deployment->+->第一个...
插件方式:alt+insert->Plugin Template
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.2</version>
启动:右键->run Maven->tomcat7:run
configuration标签修改port和path:
<configuration>
<port>8888</port>
<path></path>
</configuration>
网友评论