jar包啟動 後面覆蓋或追加引數
1. D<name>=<value> : set a system property 設定系統屬性。
2. 官方解釋:Set a system property value. If value is a string that contains spaces, you must enclose the string in double quotes:
* 首先理解引數的意義,java命令引入jar時可以-cp引數,但時-cp不能用萬用字元(多個jar時什麼煩要一個個寫,不能.jar),面通常的jar都在同一目錄,且多於1個。)-Djava.ext.dirs 就可以解決 多個jar的問題
如:
java -jar -Dserver.port=8555 -Dxxl.job.executor.port=9998 democlient-0.0.1-SNAPSHOT.jar
實戰案例:
java -jar -Dserver.port=8555 -Dxxl.job.executor.port=9998 democlient-0.0.1-SNAPSHOT.jar
本作品採用《CC 協議》,轉載必須註明作者和本文連結