One or more Filters failed to start. Full details will be found in the appropriate container log fil

今天在spring集成shiro安全框架的时候,在tomcat运行时没有报错,并且项目无法正常运行,仅出现One or more Filters failed to start. Full details will be found in the appropriate container log file严重提示。One or more Filters failed to start. Full details will be found in the appropriate container log fil_第1张图片
并且在tomcat的错误日志文件夹中也并没有错误日志
One or more Filters failed to start. Full details will be found in the appropriate container log fil_第2张图片
解决方案
在项目的classpath处添加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 = ../logs    
org.apache.juli.FileHandler.prefix = error-debug.    

java.util.logging.ConsoleHandler.level = FINE    
java.util.logging.ConsoleHandler.formatter = java.util.logging.SimpleFormatter 

在重新启动tomcat即可显示错误
One or more Filters failed to start. Full details will be found in the appropriate container log fil_第3张图片
在tomcat的错误日志中也能够看到One or more Filters failed to start. Full details will be found in the appropriate container log fil_第4张图片

你可能感兴趣的:(error)