av一区二区在线观看_亚洲男人的天堂网站_日韩亚洲视频_在线成人免费_欧美日韩精品免费观看视频_久草视

您的位置:首頁技術(shù)文章
文章詳情頁

java - SpringBoot在Eclipse內(nèi)能夠運(yùn)行,但是部署在Tomcat8上啟動時(shí)會有一個(gè)logback的異常

瀏覽:130日期:2023-11-20 18:46:08

問題描述

新開發(fā)一個(gè)項(xiàng)目,我使用了Springboot作為框架,在項(xiàng)目開發(fā)期間我一直使用Eclipse來進(jìn)行測試,期間一切正常,在近日準(zhǔn)備部署到本地的Tomcat8 上供客戶端開發(fā)的時(shí)候發(fā)現(xiàn)了這個(gè)問題,具體異常如下:

23-May-2017 14:32:20.119 嚴(yán)重 [localhost-startStop-1] org.apache.catalina.core.ContainerBase.addChildInternal ContainerBase.addChild: start: org.apache.catalina.LifecycleException: Failed to start component [StandardEngine[Catalina].StandardHost[localhost].StandardContext[/ucwapi]] at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:167) at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:752) at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:728) at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:734) at org.apache.catalina.startup.HostConfig.deployWAR(HostConfig.java:952) at org.apache.catalina.startup.HostConfig$DeployWar.run(HostConfig.java:1823) at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) at java.util.concurrent.FutureTask.run(FutureTask.java:266) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617) at java.lang.Thread.run(Thread.java:745)Caused by: java.lang.IllegalArgumentException: LoggerFactory is not a Logback LoggerContext but Logback is on the classpath. Either remove Logback or the competing implementation (class org.apache.logging.slf4j.Log4jLoggerFactory loaded from file:/C:/server/apache-tomcat-8.5.15/webapps/ucwapi/WEB-INF/lib/log4j-slf4j-impl-2.4.1.jar). If you are using WebLogic you will need to add ’org.slf4j’ to prefer-application-packages in WEB-INF/weblogic.xml Object of class [org.apache.logging.slf4j.Log4jLoggerFactory] must be an instance of class ch.qos.logback.classic.LoggerContext at org.springframework.util.Assert.isInstanceOf(Assert.java:346) at org.springframework.boot.logging.logback.LogbackLoggingSystem.getLoggerContext(LogbackLoggingSystem.java:221) at org.springframework.boot.logging.logback.LogbackLoggingSystem.getLogger(LogbackLoggingSystem.java:213) at org.springframework.boot.logging.logback.LogbackLoggingSystem.beforeInitialize(LogbackLoggingSystem.java:98) at org.springframework.boot.logging.LoggingApplicationListener.onApplicationStartedEvent(LoggingApplicationListener.java:215) at org.springframework.boot.logging.LoggingApplicationListener.onApplicationEvent(LoggingApplicationListener.java:197) at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:166) at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:138) at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:121) at org.springframework.boot.context.event.EventPublishingRunListener.publishEvent(EventPublishingRunListener.java:111) at org.springframework.boot.context.event.EventPublishingRunListener.started(EventPublishingRunListener.java:60) at org.springframework.boot.SpringApplicationRunListeners.started(SpringApplicationRunListeners.java:48) at org.springframework.boot.SpringApplication.run(SpringApplication.java:303) at org.springframework.boot.context.web.SpringBootServletInitializer.run(SpringBootServletInitializer.java:149) at org.springframework.boot.context.web.SpringBootServletInitializer.createRootApplicationContext(SpringBootServletInitializer.java:129) at org.springframework.boot.context.web.SpringBootServletInitializer.onStartup(SpringBootServletInitializer.java:85) at org.springframework.web.SpringServletContainerInitializer.onStartup(SpringServletContainerInitializer.java:169) at org.apache.catalina.core.StandardContext.startInternal(StandardContext.java:5196) at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:150) ... 10 more23-May-2017 14:32:20.120 嚴(yán)重 [localhost-startStop-1] org.apache.catalina.startup.HostConfig.deployWAR Error deploying web application archive [C:serverapache-tomcat-8.5.15webappsucwapi.war] java.lang.IllegalStateException: ContainerBase.addChild: start: org.apache.catalina.LifecycleException: Failed to start component [StandardEngine[Catalina].StandardHost[localhost].StandardContext[/ucwapi]] at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:756) at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:728) at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:734) at org.apache.catalina.startup.HostConfig.deployWAR(HostConfig.java:952) at org.apache.catalina.startup.HostConfig$DeployWar.run(HostConfig.java:1823) at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) at java.util.concurrent.FutureTask.run(FutureTask.java:266) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617) at java.lang.Thread.run(Thread.java:745)

Springboot 版本為1.3.5logback版本為1.1.7

問題解答

回答1:

Tomcat7.0 升級至8.0 問題解決

回答2:

本地打war能運(yùn)行不?

java - SpringBoot在Eclipse內(nèi)能夠運(yùn)行,但是部署在Tomcat8上啟動時(shí)會有一個(gè)logback的異常

回答3:

原因:ClassLoader 的關(guān)系,IDE中的ClassLoader 實(shí)現(xiàn)與 Spring Boot JarLauncher 不同,因此,加載了不同的jar。log4j-slf4j 與logback 均為 slf4j-api的實(shí)現(xiàn),所以沖突了。

解決方法:移除 log4j-slf4j 依賴(通過Maven)

標(biāo)簽: java
主站蜘蛛池模板: 四虎在线观看 | 在线天堂免费中文字幕视频 | 老司机成人在线 | 国产精品成人国产乱 | www四虎影视| 一区视频在线免费观看 | 大象一区 | 99精品久久久久久中文字幕 | 91免费小视频 | 久久国产视频网 | 久久夜视频 | 国产成人免费在线观看 | 欧美视频免费 | 日韩成人免费视频 | 国产欧美日韩 | 日本在线小视频 | 一级毛片在线播放 | 中文字幕在线一区二区三区 | 91高清在线观看 | 福利精品在线观看 | 国产精品亚洲综合 | 免费在线观看一区二区 | 欧美一级三级 | 久久精品毛片 | 欧美亚洲在线 | 成人欧美一区二区三区黑人孕妇 | 天天操,夜夜爽 | 古装人性做爰av网站 | 久久精品天堂 | 中文字幕在线看第二 | 久久国产秒 | 天堂三级 | 在线婷婷 | 精品久久久久久久久久 | 九九综合九九 | 性一爱一乱一交一视频 | 色欧美综合 | 在线观看日本网站 | 91精品国产色综合久久 | 中文字幕欧美一区二区 | 国产精品一区二 |