idea 社區版本創建javaweb項目 使用jetty
阿新 • • 發佈:2018-09-11
art java web end 技術 org 分享圖片 maven javaweb
idea社區版本 創建javaweb項目後使用jetty啟動
<dependencies> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <version>3.0.1</version> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-jsp</artifactId> <version>9.0.0.v20130308</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-maven-plugin</artifactId> <version>9.0.0.v20130308</version> <configuration> <contextPath>/mytest</contextPath> <httpConnector> <port>8082</port> </httpConnector> </configuration> </plugin> </plugins> </build>
idea 社區版本創建javaweb項目 使用jetty