Dropbox 无法使用报出Connection Errors

来源:百度知道 编辑:UC知道 时间:2024/05/06 02:57:12
就是DropboX用不了...
截个图看
不知有什么办法解决?

这类问题通常都是因为在web.xml里面添加了

<listener>
<listener-class>

org.springframework.web.context.ContextLoaderListener
</listener-class>
</listener>

而导致的。看到有人回帖说把org.springframework.web.context.ContextLoaderListener替换为org.springframework.web.context.ContextLoaderServlet,服务器就不会报出Error listenerStart的错误了,其实不然,即使错误不会报出了,但作用出现了偏差。究其原因,ContextLoaderListener是在服务器刚启动时即执行的一个监听器,用来监测jar包或者配置文件信息是否完整正确的,所以,如果服务器中报出Error listenerStart的异常,引发的原因可能有很多,因为是服务器内部出现了问题,所以不好调试,也不好用某种固定的方法解决。

这类问题通常都是因为在web.xml里面添加了

<listener>
<listener-class>
org.springframework.web.context.ContextLoaderListener
</listener-class>
</listener>