本文介绍了java.util.ServiceConfigurationError:org.apache.juli.logging.Log:提供者org.eclipse.jetty.apache.jsp.JuliLog不是子类型的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我是春季MVC,码头和宁静的新手.使用此命令>
I am newbie in spring mvc, jetty and restful.I'm trying to deploy my restful App is running perfectly when using this command >
mvn clean jetty:run
它给出以下错误:
我的pom.xml如下: pom.xml
my pom.xml as follows : pom.xml
我的项目如下:项目
我已经尝试了很多次,但是都没有成功.请帮忙!
I have tried it many times but I've been unsuccessful. Please help!
推荐答案
org.apache.tomcat.websocket.WsWebSocketContainer
如果您使用的是jetty:run
,则不允许将上述类放在您的类路径/类加载器中.
If you are using jetty:run
then the above class is not allowed to be in your classpath/classloader.
查找将其引入的依赖项并删除/排除它.
Find which dependency brings it in and remove/exclude it.
这篇关于java.util.ServiceConfigurationError:org.apache.juli.logging.Log:提供者org.eclipse.jetty.apache.jsp.JuliLog不是子类型的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!