maven 运行java 的三种方式

新建项目

maven 创建一个新的项目:
最基本的maven项目创建命令如下
mvn archetype:generate -DgroupId=com.mycompany.app    -DartifactId=my-app              -DarchetypeArtifactId=maven-archetype-quickstart -DinteractiveMode=false

or
mvn archetype:generate -DgroupId={{包名}} -DartifactId={{为目录}} -DarchetypeArtifactId=maven-archetype-quickstart

or

mvn archetype:generate -DgroupId={{包名}} -DartifactId={{为目录}} -Dversion=0.0.1_SNAPSHOT

详细创建指令如下:
mvn archetype:create或者mvn archetype:generate 是固定写法,两者几乎无区别。
额外参数如下:
-DgroupId 组织标识(包名)
-DartifactId 项目名称
-DarchetypeArtifactId 指定ArchetypeId,maven-archetype-quickstart,创建一个Java Project;maven-archetype-webapp,创建一个Web Project
-DinteractiveMode 是否使用交互模式

运行方法一:

不存在参数的情况下:mvn exec:java -Dexec.mainClass="***.Main"
存在参数:mvn exec:java -Dexec.mainClass="***.Main" -Dexec.args="arg0 arg1 arg2"
指定运行时库:mvn exec:java -Dexec.mainClass="***.Main" -Dexec.classpathScope=runtime


mvn exec:java -Dexec.mainClass="TestRun.TestngRun"    通过exec指令执行mainClass
#需要传递参数的话,通过-D指令
mvn exec:java -Dexec.mainClass="com.wushi.MainClass" -Dexec.args="arg0 arg1 arg2"
#需要传递classpath的运行时依赖
mvn exec:java -Dexec.mainClass="com.wushi.MainClass" -Dexec.classpathScope=runtime

运行方法二:


通过POM.xml方式配置
在maven的某一个执行阶段执行java mainClass
<build>
 <plugins>
  <plugin>
   <groupId>org.codehaus.mojo</groupId>
   <artifactId>exec-maven-plugin</artifactId>
   <version>1.1.1</version>
   <executions>
    <execution>
     <phase>test</phase>
     <goals>
      <goal>java</goal>
     </goals>
     <configuration>
      <mainClass>com.vineetmanohar.module.CodeGenerator</mainClass>
      <arguments>
       <argument>arg0</argument>
       <argument>arg1</argument>
      </arguments>
     </configuration>
    </execution>
   </executions>
  </plugin>
 </plugins>
</build>


<build> 
 <plugins> 
 <plugin> 
 <groupId>org.codehaus.mojo</groupId> 
 <artifactId>exec-maven-plugin</artifactId> 
 <version>1.1.1</version> 
 <executions> 
 <execution> 
  <phase>test</phase> 
  <goals> 
  <goal>java</goal> 
  </goals> 
  <configuration> 
  <mainClass>com.vineetmanohar.module.CodeGenerator</mainClass> 
  <arguments> 
  <argument>arg0</argument> 
  <argument>arg1</argument> 
  </arguments> 
  </configuration> 
 </execution> 
 </executions> 
 </plugin> 
 </plugins> 
</build>

将CodeGenerator.main()方法的执行绑定到maven的 test 阶段,通过下面的命令可以执行main方法:
mvn test

运行方法三:


在pom.xml中指定某个配置来执行
<profiles> 
 <profile> 
 <id>code-generator</id> 
 <build> 
 <plugins> 
 <plugin> 
  <groupId>org.codehaus.mojo</groupId> 
  <artifactId>exec-maven-plugin</artifactId> 
  <version>1.1.1</version> 
  <executions> 
  <execution> 
  <phase>test</phase> 
  <goals> 
  <goal>java</goal> 
  </goals> 
  <configuration> 
  <mainClass>com.vineetmanohar.module.CodeGenerator</mainClass> 
  <arguments> 
   <argument>arg0</argument> 
   <argument>arg1</argument> 
  </arguments> 
  </configuration> 
  </execution> 
  </executions> 
 </plugin> 
 </plugins> 
 </build> 
 </profile> 
</profiles>
将2中的配置用<profile>标签包裹后就能通过指定该配置文件来执行main方法,如下:
mvn test -Pcode-generator
注:通过以下命令可以获取mvn exec的其他配置参数说明。
mvn exec:help -Ddetail=true -Dgoal=java

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值