mac+maven+intellij=web項目開發小竅門

#一、使用命令行啓動web項目web

摒棄IDE的緣由是 配置項目啓動太浪費時間,浪費時間就是浪費生命。eclipse

##①使用命令行啓動項目的優點: 省略了在IDE中繁瑣的配置步驟。
##②前提條件: 固然是要在pom.xml中配置好jetty插件咯: <properties> ...其他properties ...其他properties ...其他properties <jetty.version>9.3.8.v20160314</jetty.version> </properties> <plugins> ...其他插件 ...其他插件 ...其他插件 <plugin> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-maven-plugin</artifactId> <version>${jetty.version}</version> </plugin> </plugins>maven

##③啓動過程: 一、 搜索到項目的路徑下(ls以後顯示pom.xml的路徑); 二、 mvn jetty:run 三、 若是想中止 ctrl+c插件

相關文章
相關標籤/搜索