【HH原創】IntelliJ 用 jetty-maven-plugin 啓動 SpringMVC

1、在 pom.xml 中引用插件web

<plugin>
                <groupId>org.eclipse.jetty</groupId>
                <artifactId>jetty-maven-plugin</artifactId>
                <version>9.3.16.v20170120</version>
                <configuration>
                    <webAppConfig>
                        <contextPath>/gateway/</contextPath>
                        <defaultsDescriptor></defaultsDescriptor>
                    </webAppConfig>
                </configuration>
            </plugin>

 

2、在運行配置中建立 maven 啓動配置,並增長 jetty:run 命令參數,如需設置端口在後面直接附加 Djetty.port=30227eclipse

jetty:run -Djetty.port=30227

 

 

附加:還能夠在 Maven 的全局配置文件 Setting 的根節點下增長以下代碼maven

<pluginGroups>
    <pluginGroup>org.eclipse.jetty</pluginGroup>
  </pluginGroups>

再參考第二條作一下運行配置便可,全局配置更加方便,可是沒法設置 contextPathspa

相關文章
相關標籤/搜索