Maven通過命令建立web專案

五柳-先生發表於2015-07-21

通過dos命令列定位到要建立專案的目錄,執行以下命令:

mvn archetype:create -DgroupId=com.learn -DartifactId=LearnNew -DarchetypeArtifactId=maven-archetype-webapp

 執行結果如下:

 

生成專案目錄機構:


 
 

開啟index.jsp 就能看到 <html>
<body>
<h2>Hello World!</h2>
</body>
</html> 

 

執行mvn install,並將target下面的LearnNew.war放於tomcat的webapps下面,啟動tomcat,通過瀏覽器訪問:http://localhost:8080/LearnNew/

 

將會看到熟悉的:”Hello World!“

轉載: http://longfor5.iteye.com/blog/2079688

相關文章