idea maven jetty插件热部署
Posted 邱明成
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了idea maven jetty插件热部署相关的知识,希望对你有一定的参考价值。
maven tomcat插件好像无法进行热部署,jetty可以如下配置实现热部署,但是idea无法进行自动编译,所以需要如下快捷键
- Ctrl+Shift+F9,编译
- Ctrl+F9,生成项目
<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>8.1.1.v20120215</version>
<configuration>
<scanIntervalSeconds>1</scanIntervalSeconds><!-- 多少秒进行一次热部署 -->
<webApp>
<contextPath>/wp</contextPath>
</webApp>
<connectors>
<connector implementation="org.eclipse.jetty.server.nio.SelectChannelConnector">
<port>80</port>
</connector>
</connectors>
</configuration>
</plugin>
以上是关于idea maven jetty插件热部署的主要内容,如果未能解决你的问题,请参考以下文章
IntelliJ + Maven + 内Jetty 实现热部署项目