java.lang.ClassNotFoundException:org.apache.tomcat.jdbc.pool DataSourceFactory

发布于 2024-11-02 12:31:55 字数 1021 浏览 1 评论 0 原文

我正在研究放弃 Oracle 连接池并使用 Tomcat 连接池。我按照无数示例在 Tomcat 的 /conf/server.xml 中配置 。我在此处找到了很棒的信息。但是,当我启动Tomcat时,出现以下错误:

javax.naming.NamingException:无法加载资源工厂类[根异常是java.lang.ClassNotFoundException:org.apache.tomcat.jdbc.pool DataSourceFactory]

我正在使用Tomcat 6.0。我在 /conf/server.xml 中的 配置是:

<Resource 
    name="jdbc/myds"
    type="javax.sql.DataSource"
    auth="Container" 
    factory="org.apache.tomcat.jdbc.pool.DataSourceFactory"
    driverClassName="oracle.jdbc.OracleDriver"
    url="jdbc:oracle:thin:@10.10.10.33:1234:myds"
    user="myuname"
    password="mypasswd"
/>

我知道 Tomcat 找不到工厂类,但我不明白为什么?我在文档中没有看到任何有关添加额外 .jar 文件的内容。我查看了发行版,但无论如何都找不到金色的.jar

谁能告诉我我做错了什么?

I'm investigating moving away from an Oracle connection pool and using the Tomcat connection pool. I followed the myriad of example for configuring the <Resource> in Tomcat's /conf/server.xml. I found great info here. However, when I start Tomcat, I get the following error:

javax.naming.NamingException: Could not load resource factory class [Root exception is java.lang.ClassNotFoundException: org.apache.tomcat.jdbc.pool DataSourceFactory]

I'm using Tomcat 6.0. My <Resource> config in /conf/server.xml is:

<Resource 
    name="jdbc/myds"
    type="javax.sql.DataSource"
    auth="Container" 
    factory="org.apache.tomcat.jdbc.pool.DataSourceFactory"
    driverClassName="oracle.jdbc.OracleDriver"
    url="jdbc:oracle:thin:@10.10.10.33:1234:myds"
    user="myuname"
    password="mypasswd"
/>

I understand that Tomcat can't find the factory class, but I don't understand why? I don't see anything in the documentation about adding extra .jar files. I've looked in the distribution and can't find the golden .jar anyway.

Can anyone tell me what I am doing wrong?

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

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

发布评论

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

评论(1

飘然心甜 2024-11-09 12:31:55

Tomcat JDBC 池是在 Tomcat 7.0.19 中引入的,但您尝试在 Tomcat 6.0 中使用它而不进行任何进一步的配置。

对于 Tomcat 6.0,您需要手动下载并删除最新版本的/lib 文件夹中的 >tomcat-jdbc.jar 文件。

The Tomcat JDBC pool was introduced in Tomcat 7.0.19, yet you're attempting to use it in Tomcat 6.0 without any further configuration.

For Tomcat 6.0 you need to manually download and drop the latest release of the tomcat-jdbc.jar file in /lib folder of the Tomcat installation.

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