ICode9

精准搜索请尝试: 精确搜索
首页 > 编程语言> 文章详细

mac上 idea 启动Class JavaLaunchHelper is implemented in both /Library/Java/JavaVirtualMachines...

2020-07-16 17:32:00  阅读:252  来源: 互联网

标签:both Java IntelliJ idea IDEA implemented


在用idea软件run的时候显示:

  

(objc[23229]: Class JavaLaunchHelper is implemented in both /Library/Java/JavaVirtualMachines/jdk1.7.0_80.jdk/Contents/Home/bin/java (0x10af154c0) and     /Library/Java/JavaVirtualMachines/jdk1.7.0_80.jdk/Contents/Home/jre/lib/libinstrument.dylib (0x10afd04e0). One of the two will be used. Which one is undefined.)

解决办法:

1.点击IntelliJ IDEA最上面菜单的”Help”下的“Edit Custom Properties”,没有这个properties文件的话,IntelliJ IDEA会提示创建;
2.在文件中加上
idea.no.launcher=true
3.重启IntelliJ IDEA

原因分析:

You can find all the details here:

IDEA-170117 “objc: Class JavaLaunchHelper is implemented in both …” warning in Run consoles
It’s the old bug in Java on Mac that got triggered by the Java Agent being used by the IDE when starting the app. This message is harmless and is safe to ignore. Oracle developer’s comment:

The message is benign, there is no negative impact from this problem since both copies of that class are identical (compiled from the exact same source). It is purely a cosmetic issue.

The problem is fixed in Java 9 and in Java 8 update 152.

If it annoys you or affects your apps in any way, the workaround for IntelliJ IDEA is to disable idea_rt launcher agent by adding idea.no.launcher=true into idea.properties (Help | Edit Custom Properties...).

Mac上面Java的一个老Bug了,会在那些使用了Java Agent的IDE上运行应用时触发,但这个Error对程序是无影响的,可以无视

标签:both,Java,IntelliJ,idea,IDEA,implemented
来源: https://www.cnblogs.com/zhouj850/p/13323814.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有