- 浏览: 2012 次
- 性别:
- 来自: 杭州
最新评论
文章列表
有些时候我们需要执行maven项目的中的某个类的main方法,Maven的exec插件允许你运行Java项目中的main方法。下面简要介绍下用法:
1 编译相关代码,exec执行时是不会为你编译代码的,所以要先编译一下
mvn compile
2 运行指定类的main方法,可以指定参数和运行时类路径
mvn exec:java -Dexec.mainClass="com.example.Main" -Dexec.args="arg0 arg1 arg2" -Dexec.classpathScope=runtime