Setting JVM parameters at runtime(在运行时设置 JVM 参数)
问题描述
是否可以在 JVM 已经加载(运行)之后更改/修改/添加 VM 参数?如果是这样,我该怎么做?
Is it possible to change/modify/adding VM parameters after the JVM is already loaded (running)? If so, how can I do it?
推荐答案
对于您通过命令行上的 -D
标志设置的属性,您需要 System.setProperty.例如:
For properties you'd set via the -D
flag on the command line, you want System.setProperty. For example:
System.setProperty("propname", "hello world");
// ... later ...
String value = System.getProperty("propname");
更新:
您不能动态启用调试,但您可以在启动时启用调试但稍后附加调试器.通过以下操作,您可以监听端口 12345 并立即启动程序运行(通过 suspend=n
).然后,您可以在需要时附加调试器,分离调试器,稍后再附加,等等.
You can't enable debugging dynamically, but you can enable debugging at startup but attach a debugger later. With the following, you can listen on port 12345 and start your program running right away (via suspend=n
). Then you can attach a debugger if/when you need to, detach the debugger, attach again later, etc.
-Xdebug -Xnoagent -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=12345
当然,即使没有附加调试器,这也会影响性能,因此它只能在开发/测试代码中运行良好,而不是在生产环境中运行.为此,您需要记录,例如log4j.
Of course, this hurts performance even when the debugger isn't attached, so it only works well in dev/test code, not production. For that, you want logging, e.g. log4j.
这篇关于在运行时设置 JVM 参数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在运行时设置 JVM 参数
基础教程推荐
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- 降序排序:Java Map 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01