1. 程式人生 > >idea 社區版本創建javaweb項目 使用jetty

idea 社區版本創建javaweb項目 使用jetty

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