首页 > 代码库 > Maven项目热部署,修改代码后不用重启tomcat服务器
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进行启动后即可
Maven项目热部署,修改代码后不用重启tomcat服务器
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。