1.catalina.log 中提示
At least one JAR was scanned for TLDs yet contained no TLDs. Enable debug logging for this logger for a complete list of JARs that were scanned but no TLDs were found in them. Skipping unneeded JARs during scanning can improve startup time and JSP compilation time。
之后就没有日志了。
初步怀疑是系统有bug,但是项目启动不起来。
在项目的WEB-INF\classes下添加logging.properties文件,内容如下:
handlers = org.apache.juli.FileHandler, java.util.logging.ConsoleHandler
############################################################
# Handler specific properties.
# Describes specific configuration info for Handlers.
############################################################
org.apache.juli.FileHandler.level = FINE
org.apache.juli.FileHandler.directory = ${catalina.base}/logs
org.apache.juli.FileHandler.prefix = error-debug.
java.util.logging.ConsoleHandler.level = FINE
java.util.logging.ConsoleHandler.formatter = java.util.logging.SimpleFormatter
如果失败的话,就会在tomcat\logs\error-debug.log 下面有错误日志。
再次启动项目,打开错误日志,发现项目卡在了
Initializing Spring root webApplicationContext。
1.启动时间过长。
我的项目是能启动起来的,这个排除。(不确定是不是时间过长,可以先更改一下设置看一下)
2.数据库连接错误。
把数据库的连接信息,在Navicat中,实际的连接一下看看是否可以。(我的是这个问题,服务器没有启动起来。)
3.配置文件错误。
这个要一点一点看了。