mac下 安装tomcat 后项目无法启动以及 错误 找不到或无法加载主类

Posted Doyourself!

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mac下 安装tomcat 后项目无法启动以及 错误 找不到或无法加载主类相关的知识,希望对你有一定的参考价值。

   按照网上的步骤,在mac上安装tomcat后,写个简单的测试类报错:错误 找不到或无法加载主类

 

Class JavaLaunchHelper is implemented in both /Library/Java/JavaVirtualMachines/jdk1.8.0_121.jdk/Contents/Home/bin/java (0x10d19c4c0) and /Library/Java/JavaVirtualMachines/jdk1.8.0_121.jdk/Contents/Home/jre/lib/libinstrument.dylib (0x10ea194e0). One of the two will be used. Which one is undefined.

昨晚在Mac上装了Intellij Idea,随手用IJ带的Java工程模板创建了一个测试工程,控制台报了这样一个Error。

意思是这个JavaLaunchHelper类被实现了两次。无奈之下搜索了万能的Stack Overflow,找到了解决方案。

http://stackoverflow.com/questions/43003012/objc3648-class-javalaunchhelper-is-implemented-in-both

引用高票回答如下

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...).

这位外国码友清楚地解释了这个Error的原因,大概意思是说这是Mac上面Java的一个老Bug了,会在那些使用了Java Agent的IDE上运行应用时触发,但这个Error对程序是无影响的,可以无视。在Java 9和Java 1.8.152版本里已经修复了。

解决方案:

点击IJ最上面菜单的Help-Edit Custom Properties,没有这个properties文件的话,IJ会提示创建,然后在里面加上

idea.no.launcher=true

 

来源:http://blog.csdn.net/lizhaowei213/article/details/68951671

以上是关于mac下 安装tomcat 后项目无法启动以及 错误 找不到或无法加载主类的主要内容,如果未能解决你的问题,请参考以下文章

mac启动tomcat

搭建redis完成后项目无法连接[nested exception is io.lettuce.core.RedisConnectionException: Unable to connect ]

Tomcat部署启动时发生错误

Eclipse导入已有的项目后项目报错的解决办法

Mac下安装tomcat

添加 cocoapods 后项目未出现 - iOS