maven运行webapp项目

观书散遗帙,探古穷至妙。这篇文章主要讲述maven运行webapp项目相关的知识,希望能为你提供帮助。
1、修改pom.xml配置

maven运行webapp项目

文章图片

< plugin> < groupId> org.apache.tomcat.maven< /groupId> < artifactId> tomcat7-maven-plugin< /artifactId> < version> 2.2< /version> < configuration> < port> 8080< /port> < /configuration> < /plugin> < plugin> < groupId> org.apache.maven.plugins< /groupId> < artifactId> maven-compiler-plugin< /artifactId> < configuration> < target> 1.8< /target> < source> 1.8< /source> < encoding> UTF-8< /encoding> < /configuration> < /plugi

 
2、设置congfigurations
maven运行webapp项目

文章图片

 
 
再点击运行就可以啦~
【maven运行webapp项目】 

    推荐阅读