创建项目:
mvn archetype:create -DgroupId=com.mycompany.app -DartifactId=my-app
参考:http://wentao365.iteye.com/blog/903396
创建web项目:
mvn archetype:create -DgroupId=com.mycompany.webapp -DartifactId=my-web -DarchetypeArtifactId=maven-archetype-webapp
参考:http://hnzhoujunmei.iteye.com/blog/1422446
maven spring:http://www.cnblogs.com/fangjins/archive/2012/05/06/2485459.html
http://www.cnblogs.com/sand-tiny/p/SpringMVC_1.html
http://www.cnblogs.com/crazy-fox/archive/2012/02/18/2357619.html
启动:mvn -Djetty.port=9999 jetty:run
mvn eclipse:eclipse -DdownloadSources=true;
mvn clean source:jar install
Jetty攻略