Maven项目热部署,修改代码后不用重启tomcat服务器

只需要在pom.xml文件中添加

 1     <build>
 2         <finalName>MySSM</finalName>
 3         <!-- 指定部署的服务器类型 -->
 4         <plugins>
 5             <!-- <plugin> <groupId>org.apache.tomcat.maven</groupId> <artifactId>tomcat6-maven-plugin</artifactId> 
 6                 <version>2.2</version> </plugin> -->
 7             <plugin>
 8                 <groupId>org.apache.tomcat.maven</groupId>
 9                 <artifactId>tomcat7-maven-plugin</artifactId>
10                 <version>2.2</version>
11                 <configuration>
12                     <port>8080</port>
13                     <path>/MySSM</path>
14                     <uriEncoding>UTF-8</uriEncoding>
15                     <server>tomcat7</server>
16                 </configuration>
17                 <!-- 在打包的时候运行这个容器 -->
18                 <executions>
19                     <execution>
20                         <phase>package</phase>
21                         <goals>
22                             <goal>run</goal>
23                         </goals>
24                     </execution>
25                 </executions>
26             </plugin>
27         </plugins>
28     </build>

对项目进行debug后package进行启动后即可

原文地址:https://www.cnblogs.com/lonecloud/p/5989205.html