maven 项目应用tomcat插件
Posted 榕树猎人
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了maven 项目应用tomcat插件相关的知识,希望对你有一定的参考价值。
参考:https://blog.csdn.net/weixin_45089791/article/details/99067243
- 首先在pom.xml中增加插件依赖
<build> <plugins> <!-- jdk版本插件 --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.2</version> <configuration> <source>1.9</source> <target>1.9</target> <encoding>UTF-8</encoding> <showWarnings>true</showWarnings> </configuration> </plugin> <!-- tomcat7插件 --> <plugin> <groupId>org.apache.tomcat.maven</groupId> <artifactId>tomcat7-maven-plugin</artifactId> <version>2.1</version> <configuration> <port>8080</port> <path>/ss1</path> <server>tomcat7</server> </configuration> </plugin> </plugins> </build>
- 自己添加
- 添加maven
增加tomcat7:run
结束,点赞吧!
以上是关于maven 项目应用tomcat插件的主要内容,如果未能解决你的问题,请参考以下文章
Maven01_07_7.Maven的编译插件创建web的Maven项目讲解把Maven的web项目跑到tomcat中更改JDK的版本用1.8的版本来编译我们的代码