今天spring4.3.13 項目,整合ActiveMQ的時候,項目啟動在自動部署到tomcat下的時候,不能正常的部署,僅僅報錯如下:
Connected to server [2017-12-08 03:57:12,428] Artifact springDemo:war exploded: Artifact is being deployed, please wait... 08-Dec-2017 15:57:13.525 信息 [RMI TCP Connection(3)-127.0.0.1] org.apache.jasper.servlet.TldScanner.scanJars 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. 08-Dec-2017 15:57:13.553 嚴重 [RMI TCP Connection(3)-127.0.0.1] org.apache.catalina.core.StandardContext.startInternal One or more listeners failed to start. Full details will be found in the appropriate container log file 08-Dec-2017 15:57:13.554 嚴重 [RMI TCP Connection(3)-127.0.0.1] org.apache.catalina.core.StandardContext.startInternal Context [] startup failed due to previous errors [2017-12-08 03:57:13,565] Artifact springDemo:war exploded: Error during artifact deployment. See server log for details.

而且,此時tomcat下日志目錄下並沒有報錯的日志文件

可惡的是,我自己配置的日志配置文件

解決方案:
只要是能看到詳細的報錯日志,要解決問題就迎刃而解了,可是得有日志文件出來呀
所以,在classpath:下新建一個logging.properties文件【classpath就是你項目的/目錄下】
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的logs,目錄下查看日志文件

或直接在console下查看錯誤:

去解決問題就好了!!!!!!
