我正在使用来自https://github.com/spring-guides/gs-spring-boot#run-the-application的springboot&#示例项目。这是我用来运行构建的jar文件的命令:
java -jar build/libs/gs-spring-boot-0.1.0.jar -
Dcom.sun.management.jmxremote -
Dcom.sun.management.jmxremote.port=12348 -
Dcom.sun.management.jmxremote.authenticate=false -
Dcom.sun.management.jmxremote.ssl=false -
Dcom.sun.management.jmxremote.rmi.port=12348 -
Djava.rmi.server.hostname=192.168.7.119
然后我尝试使用jmxterm
进行连接:
java -jar ~/Downloads/jmxterm.jar -l localhost:12348
但是获得连接拒绝错误。
答案 0 :(得分:0)
-Dcom.sun ...参数必须在-jar something.jar之前 出现。 -jar something.jar之后的所有内容均被视为应用程序的参数,并传递到main中。