使用Maven執行Java main的3種方式
阿新 • • 發佈:2018-12-23
maven使用exec外掛執行java main方法,以下是3種不同的操作方式。
一、 從命令列執行
1、執行前先編譯程式碼,exec:java不會自動編譯程式碼,你需要手動執行mvn compile來完成編譯。
mvn compile2、編譯完成後,執行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將CodeGenerator.main()方法的執行繫結到maven的 test 階段,通過下面的命令可以執行main方法:>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>
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
注意:在使用exec命令時,可能會出現一個關於DaemonThreads 的warning,可能會導致中文亂碼,解決此方法是:
mvn exec:java -Dexec.mainClasss="com.***.***.main" -Dexec.cleanupDaemonThreads=false