使用如下命令可以建立一个Struts2 Starter应用程序

mvn archetype:create 

-DgroupId=tutorial

    -DartifactId=tutorial

    -DarchetypeGroupId=org.apache.struts \

    -DarchetypeArtifactId=struts2-archetype-starter \

    -DarchetypeVersion=2.0.5-SNAPSHOT

-DremoteRepositories=http://people.apache.org/repo/m2-snapshot-repository

 

参数含义:

 

参数

含义

groupId

当前应用程序隶属的GroupID,通常是公司所有应用程序的根目录,例如:com.jpleasure

artifactId 

当前应用程序的ID

package

代码生成时使用的根包的名字,如果没有给出,默认使用archetypeGroupId

archetypeGroupId

原型(archetype)的Group ID,因为我们这里使用的是Struts2的原型,所以这里总是org.apache.struts

archetypeArtifactId 

原型(archetypeID

archetypeVersion 

原型(archetype)版本

remoteRepositories 

包含原型(archetype)的远程资源库的列表,如果部署在标准的maven资源库或者本地,这不需要标记本项

 

一些相关的Maven命令(注意要再项目目录中运行)

构建

mvn install

创建IntelliJ IDEA项目文件

mvn idea:idea

创建Eclipse项目文件

  mvn eclipse:eclipse

运行测试

mvn test

清除

mvn clean

打包

mvn package

获得需要的JAR文件

mvn initialize

使用Jetty运行

mvn jetty:run

ExtJS教程- Hibernate教程-Struts2 教程-Lucene教程