将 JdbcTemplate 与“非 Spring-Bean”一起使用JNDI数据源

发布于 2024-12-05 13:28:42 字数 414 浏览 1 评论 0原文

spring-framework-reference.pdf(与 spring-framework-3.1.0.M2 捆绑在一起)的第 342 页指出,“通过使用 DataSource 引用直接实例化,可以在 DAO 实现中使用 JdbcTemplate。”然而,它接着说:“DataSource 应该始终配置为 Spring IoC 容器中的 bean。”

有谁知道为什么不应该从 Spring 容器外部的普通 JNDI 查找将 DataSource 提供给 JdbcTemplate,例如 如何以编程方式使用Spring的JdbcTemplate?

Page 342 of spring-framework-reference.pdf (bundled with spring-framework-3.1.0.M2) states, "The JdbcTemplate can be used within a DAO implementation through direct instantiation with a DataSource reference." However, it goes on to say, "The DataSource should always be configured as a bean in the Spring IoC container."

Does anyone know why the DataSource shouldn't be provided to a JdbcTemplate from a plain-old JNDI lookup outside of the Spring container, e.g. How to programatically use Spring's JdbcTemplate?

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

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

发布评论

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

评论(1

面犯桃花 2024-12-12 13:28:42

“DataSource 应始终配置为 Spring IoC 容器中的 bean。”

看来此注释旨在澄清前面的陈述:

“JdbcTemplate 可以通过使用 DataSource 引用直接实例化在 DAO 实现中使用,或者在 Spring IoC 容器中进行配置并作为 bean 引用提供给 DAO。”

我相信这些语句试图传达的信息是,当您在 Spring 中配置 DAO 时,您可以:

  1. 将 DataSource 直接注入 DAO 并自己在代码中创建 JdbcTemplate,或者
  2. 您可以使 JdbcTemplate 成为 Spring bean同样,将DataSource注入到JdbcTemplate中,并将JdbcTemplate注入到DAO中。

那么,注释意味着,如果 Spring 管理 DAO 及其依赖项,则在任何一种情况下,DataSource 都必须是 Spring bean,因为它需要注入到 DataSource 中以用于构造 JdbcTemplate(情况 1)或注入到JdbcTemplate 本身(情况 2)。

我不认为这意味着 JdbcTemplate 中使用的 DataSource 必须始终由 Spring 并且仅由 Spring 管理。这张纸条确实给人留下了这样的印象。这可能值得提交一个错误。

"The DataSource should always be configured as a bean in the Spring IoC container."

It appears that this note is intended to clarify the preceding statement:

"The JdbcTemplate can be used within a DAO implementation through direct instantiation with a DataSource reference, or be configured in a Spring IoC container and given to DAOs as a bean reference."

I believe the information these statements are trying to convey is that when you're configuring a DAO in Spring, you can either:

  1. inject the DataSource directly into the DAO and create the JdbcTemplate in code yourself, or
  2. you can make the JdbcTemplate a Spring bean as well, inject the DataSource into the JdbcTemplate, and inject the JdbcTemplate into the DAO.

The note, then, means that if Spring is managing the DAO and its dependencies, the DataSource must be a Spring bean in either case, as it needs to be injected either into the DataSource for use in constructing the JdbcTemplate (case 1) or into the JdbcTemplate itself (case 2).

I wouldn't take it to mean that a DataSource used in a JdbcTemplate must always be managed by Spring and only Spring. The note does give that impression. It's probably worth filing a bug against.

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