java:web.xml 中 com.isomorphic.servlet.DataSourceLoader 条目的 ClassNotFoundException

发布于 2024-10-11 03:19:43 字数 511 浏览 4 评论 0原文

我在 web.xml 中指定了 Servlet 映射,如下所示

    <web-app>
        <!-- Servlets -->
            <servlet>
                     <servlet-name>DataSourceLoader</servlet-name>
                     <servlet-class>com.isomorphic.servlet.DataSourceLoader</servlet-class>
            </servlet>
    </web-app>

在类路径中,存在对相应 jar 文件的引用,并且类也显示在包资源管理器中的引用库列表中。但当我运行这个网络应用程序时,它仍然给出未找到类的异常。

我是否缺少某些文件中的条目?

Web 应用程序基于 smartGWT。

I have specified in web.xml Servlet mapping as below

    <web-app>
        <!-- Servlets -->
            <servlet>
                     <servlet-name>DataSourceLoader</servlet-name>
                     <servlet-class>com.isomorphic.servlet.DataSourceLoader</servlet-class>
            </servlet>
    </web-app>

In classpath, reference to corresponding jar file is present, also class is shown in referenced libraries listing in package explorer. But still when i run this web application, its give exception of class not found.

Am i missing entry in some file?

Web application is smartGWT based.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

背叛残局 2024-10-18 03:19:43

好的。所以,我就把它写下来。

问题

问题是,您的应用服务器无法找到具有名为 com.isomorphic.servlet.DataSourceLoader 的此类的 Jar

提示

ClassNotFound确保该类不在类路径中。或者以其他方式,Jar 或类文件位于应用程序服务器不查找的位置。

解决方案

应用服务器至少会在 WEB-INF/lib 和 WEB-INF/classes 中查找可能包含正在某处导入的类的类或 Jars。现在,WEB-INF/libs 中的 Jars 也可用于 SRC 目录中编写的代码(最终进行编译,并将 .class 文件复制到 WEB-INF/classes 目录中。

解决方案是将 Jar 放入 WEB-INF 中) /lib 目录。

OK. So, I will just write it down.

Problem

The problem was, your app server was not able to find the Jar that has this class named com.isomorphic.servlet.DataSourceLoader

Hint

ClassNotFound ensures that the class is not in classpath. Or in other way, the Jar or the class file is somewhere the app-server does not look for.

Solution

App server looks, at least, in WEB-INF/lib and WEB-INF/classes for the Classes or the Jars that might have classes that are being imported somewhere. Now, the Jars in WEB-INF/libs are also available to the code written inside SRC directory (which finally gets compiles and the .class files are copied to WEB-INF/classes directory.

The solution was putting the Jar in WEB-INF/lib directory.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文