温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

Java Main如何在maven中运行

发布时间:2020-12-08 17:01:30 来源:亿速云 阅读:178 作者:Leah 栏目:编程语言

本篇文章为大家展示了Java Main如何在maven中运行,内容简明扼要并且容易理解,绝对能使你眼前一亮,通过这篇文章的详细介绍希望你能有所收获。

一、从命令行运行

1、运行前先编译代码,exec:java不会自动编译代码,你需要手动执行mvn compile来完成编译。

mvn compile 

2、编译完成后,执行exec运行main方法。

不需要传递参数:

mvn exec:java -Dexec.mainClass="com.vineetmanohar.module.Main" 

需要传递参数:

mvn exec:java -Dexec.mainClass="com.vineetmanohar.module.Main" -Dexec.args="arg0 arg1 arg2" 

指定对classpath的运行时依赖:

mvn exec:java -Dexec.mainClass="com.vineetmanohar.module.Main" -Dexec.classpathScope=runtime 

二、在pom.xml中指定某个阶段执行

<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 

上述内容就是Java Main如何在maven中运行,你们学到知识或技能了吗?如果还想学到更多技能或者丰富自己的知识储备,欢迎关注亿速云行业资讯频道。

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI