1. 程式人生 > >idea maven jetty外掛熱部署

idea maven jetty外掛熱部署

intellij 的maven tomcat外掛進行熱部署,請參考我另一篇博文intellij的maven專案設定熱部署

jetty可以如下配置實現熱部署,但是idea無法進行自動編譯,所以需要如下快捷鍵

  • Ctrl+Shift+F9,編譯
  • Ctrl+F9,生成專案
<!-- jetty外掛 -->
<plugin>
  <groupId>org.mortbay.jetty</groupId>
  <artifactId>maven-jetty-plugin</artifactId>
  <version>6.1.5</
version> <configuration> <scanIntervalSeconds>2</scanIntervalSeconds><!-- 多少秒進行一次熱部署 --> <connectors> <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector"> <port>8099</port> </connector> </connectors
> <contextPath>/lalalala</contextPath> </configuration> </plugin>