Spring连接池

发布于 2024-07-17 11:03:10 字数 48 浏览 4 评论 0原文

有人可以告诉我或给我指出一个解释如何在 Spring 中使用连接池的文档/教程吗?

Can someone tell me or point me to a document/tutorial that explains how to use connection pooling in Spring?

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

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

发布评论

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

评论(3

旧人哭 2024-07-24 11:03:11

Spring不支持内置池。 您应该使用上面提到的第三方池。 DBCP 和 c3p0 都像 spring 一样工作。 您需要做的就是在 context.xml 中定义数据源时,只需使用 DBCP 来定义它。

Spring doesn't support inbuilt pooling. You should use a third party pool as mentioned above. DBCP and c3p0 both work like a charm with spring. All you need to do is when defining a datasource in your context.xml, just use DBCP to define it.

终难愈 2024-07-24 11:03:11

您可以使用 jdbc 驱动程序中的池数据源。 例如,在 oracle 库中有一个:

<bean id="dataSource"
    class="oracle.jdbc.pool.OracleConnectionPoolDataSource">
    <property name="URL" value="jdbc:oracle:thin:@wherever:1234:whatever" />
    <property name="user" value="theuser" />
    <property name="password" value="thepassword" />
</bean>

You might use a pooled datasource from the jdbc driver. E.g. in oracles library there is one:

<bean id="dataSource"
    class="oracle.jdbc.pool.OracleConnectionPoolDataSource">
    <property name="URL" value="jdbc:oracle:thin:@wherever:1234:whatever" />
    <property name="user" value="theuser" />
    <property name="password" value="thepassword" />
</bean>
〆凄凉。 2024-07-24 11:03:11

AFAIK Spring 不包含池化数据源...如果您在 J2SE 应用程序中需要连接池,您可以使用 Apache DBCP。 对于容器托管的应用程序,您应该在容器中配置数据源并从应用程序中使用它。

AFAIK Spring doesn't include a pooled DataSource... you can use Apache DBCP for that, if you need a connection pool in a J2SE application. For container-hosted apps, you should configure a DataSource in the container and use it from your app.

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