idea搭建 maven web项目
1、Create new Project
2、选择Maven,勾选Create from archetype
在archetype中选择:org.apache.maven.archetype:maven-archetype-webapp
3、填写:
GroupId : testGroupID
ArtifactId : TestArtifactId
4、指定maven相关信息(安装路径 setting文件 local repository路径)
在Properties中添加一个参数
archetypeCatalog=internal 表明从本地仓库拉取框架jar 默认remote
5、指定project Name : 项目名称(TestProjectName)
6、添加pom依赖
tomcat7插件启动方式:
Run ——> Edit Configurations
点击左上角的加号,添加一个新的配置,选择Maven
填写(name:tomcat7 Command Line : tomcat7:run )
工具栏中会出现刚才配置的信息,直接点击run运行web项目