Spring连接池
有人可以告诉我或给我指出一个解释如何在 Spring 中使用连接池的文档/教程吗?
Can someone tell me or point me to a document/tutorial that explains how to use connection pooling in Spring?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
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.
您可以使用 jdbc 驱动程序中的池数据源。 例如,在 oracle 库中有一个:
You might use a pooled datasource from the jdbc driver. E.g. in oracles library there is one:
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.