gpt4 book ai didi

jakarta-ee - C3P0 配置

转载 作者:行者123 更新时间:2023-11-28 22:43:16 25 4
gpt4 key购买 nike

我对何时使用独立的 C3P0 特定配置文件(如 c3p0-config.xml 与简单地将配置信息添加到标准 Context.xml 文件感到困惑。例如:

<Resource auth="Container"
description="DB Connection"
driverClass="com.mysql.jdbc.Driver"
maxPoolSize="1000"
minPoolSize="30"
acquireIncrement="1"
name="jdbc/myDB"
user="myUserName"
password="myPassword"
factory="org.apache.naming.factory.BeanFactory"
type="com.mchange.v2.c3p0.ComboPooledDataSource"
jdbcUrl="jdbc:mysql://localhost:3306/MyDB?autoReconnect=false"
preferredTestQuery = "SELECT 1"
idleConnectionTestPeriod = "1800"
/>

我目前使用 context.xml 方法,但我看到了一个完全独立的配置文件的文档。是否有正确的方法或权衡取舍?

最佳答案

c3p0 通常不只与 Tomcat 一起使用。但在 Tomcat 中,您所采用的方法应该可以正常工作。有一些library-wide (rather than DataSource-specific) properties只能在 c3p0.properties 或 typesafe/HOCON 配置文件中设置,但很少使用。只要您需要配置的只是特定于 DataSource 的属性,您就可以继续做您正在做的事情。

关于jakarta-ee - C3P0 配置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19370883/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com