通常当我们得到“org.apache.commons.logging.LogFactory”时错误?
在部署 dwr Web 应用程序时,我不断收到此错误。 我不知道为什么会这样。我无法运行任何 DWR 示例项目。
除此之外,我们得到了这个 ClassNotFound 错误。这里是什么概念?
这是一长串错误的开始,我正在得到。
SEVERE: Allocate exception for servlet dwr-invoker
java.lang.ClassNotFoundException: org.apache.commons.logging.LogFactory
任何人都可以告诉我如何解决这个问题..或者告诉我什么情况可能会导致这个错误。
While deploying a dwr web app, i'm continuously getting this error.
I dont know why this coming. I cant run any of my DWR sample projects.
Apart from that, for what we get this ClassNotFound Error. What the concept here?
This is starting of long list of error, iam getting.
SEVERE: Allocate exception for servlet dwr-invoker
java.lang.ClassNotFoundException: org.apache.commons.logging.LogFactory
Anyone tell me how to fix this problem.. or tell me what are possible situations that may cause this error.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您的 servlet 容器中似乎没有可用的 Commons Logging。 DWR 依赖于此。您可能应该将其部署为 Web 应用程序中的库。它只是一个日志库,委托给其他可用的日志库/框架(Log4j、Java 日志记录等)
Looks like you don't have Commons Logging available in your servlet container. DWR relies on this. You should probably deploy this as a library within your web app. It's simply a logging library that delegates to other available logging libraries/frameworks (Log4j, Java logging etc.)
您需要下载 Apache Commons Logging 并将其添加到您的类路径中。
You need to download Apache Commons Logging and add it to your classpath.
您需要将 commons-logging.jar 添加到类路径中。
You need to add the commons-logging.jar to the classpath.