解决tomcat运行时黑窗口一闪而过的方法

很多小伙伴运行tomcat的时候黑窗口会一闪而过,那么到底是哪里出问题了呢?而且大多数人都是没有头绪的,这个时候就打开tomcat的目录,进入bin目录,打开startup.bat文件(不是双击打开,是右键用记事本打开)
解决tomcat运行时黑窗口一闪而过的方法_第1张图片

打开文件以后,修改两个地方:

①:把倒数第二句的start换成run
②:在最后面加入pause,这个单词是防止黑窗口自动关闭的,黑窗口开启遇到意外就会停止

解决tomcat运行时黑窗口一闪而过的方法_第2张图片

修改好以后保存

然后双击startup.bat运行,这个时候黑窗口会暂停下来,题主出现的就是下面这个问题。

-Djava.endorsed.dirs=D:\JAVA\apache-tomcat-solr\\endorsed is not supported. Endorsed standards and standalone APIs
in modular form will be supported via the concept of upgradeable modules.
Error: Could not create the Java Virtual Machine.
Error: A fatal exception has occurred. Program will exit.
in modular form will be supported via the concept of upgradeable modules.
Error: Could not create the Java Virtual Machine.
Error: A fatal exception has occurred. Program will exit.

题主暂停以后发现是这一句有问题,这是JDK版本过高出的问题,所以题主在环境变量里面把1.9(有的人称为9.0)的目录换成了1.8的目录,然后再次运行,于是运行成功~

你可能感兴趣的:(报错总结)