Sharing is only supported for boot loader classes because bootstrap classpath has been appended
程序员文章站
2022-06-19 09:56:31
人不敬我,是我无才。我不敬人,是我无德。人不容我,是我无能,我不容人,是我无量。人不助我,是我无为,我不助人,是我无善。Debug是一种能力。1. 警告今日在使用 IDEA 进行Debug调试代码时,遇到了以下奇怪的警告:Java HotSpot™ 64-Bit Server VM warning:Sharing is only supported for boot loader classes because bootstrap classpath has been appen....
人不敬我,是我无才。
我不敬人,是我无德。
人不容我,是我无能,
我不容人,是我无量。
人不助我,是我无为,
我不助人,是我无善。
Debug是一种能力。
1. 警告
今日在使用 IDEA 进行Debug调试代码时,遇到了以下奇怪的警告:
Java HotSpot™ 64-Bit Server VM warning:
Sharing is only supported for boot loader classes because bootstrap classpath has been appended.
(大概意思是: Sharing 只支持 加载引导类,因为已经附加引导类的路径。)
刚开始也没有在意,但有时候居然会阻碍我Debug的脚步,那就不得不修理它了。
2.消除警告
在Async Stack Traces中,有这样一句话:
Asynchronous stack traces are enabled by default. To disable them, deselect the Instrumenting agent (requires debugger restart) option. (默认情况下启用异步堆栈跟踪。要禁用它们,请取消选择检测代理(需要重新启动调试器)选项。
这里也给出:*关于此问题的讨论
本文地址:https://blog.csdn.net/wangcheeng/article/details/112598004