使用Spring JdbcTemplate - 注入数据源与jdbcTemplate

根据Spring文档,使用Spring JdbcTemplate的步骤如下:

    <?xml version="1.0" encoding="UTF-8"?>
    <beans xmlns="http://www.springframework.org/schema/beans"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xmlns:context="http://www.springframework.org/schema/context"
        xsi:schemaLocation="
            http://www.springframework.org/schema/beans
            http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
            http://www.springframework.org/schema/context
            http://www.springframework.org/schema/context/spring-context-3.0.xsd">

        <!-- Scans within the base package of the application for @Components to configure as beans -->
        <context:component-scan base-package="org.springframework.docs.test" />

        <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
            <property name="driverClassName" value="${jdbc.driverClassName}"/>
            <property name="url" value="${jdbc.url}"/>
            <property name="username" value="${jdbc.username}"/>
            <property name="password" value="${jdbc.password}"/>
        </bean>

        <context:property-placeholder location="jdbc.properties"/>

    </beans>

然后

    @Repository
    public class JdbcCorporateEventDao implements CorporateEventDao {

        private JdbcTemplate jdbcTemplate;

        @Autowired
        public void setDataSource(DataSource dataSource) {
            this.jdbcTemplate = new JdbcTemplate(dataSource);
        }

        // JDBC-backed implementations of the methods on the CorporateEventDao follow...
    }

基本上,JdbcTemplate 是使用数据源的 setter 在 Component 类中创建的。

以这种方式执行此操作是否有任何问题,以便应用程序中正好有一个jdbcTemplate实例?

<bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate"
    p:dataSource-ref="dataSource" 
/>

然后将 jdbcTemplate 本身直接注入到组件中

@Repository
public class JdbcCorporateEventDao implements CorporateEventDao {
    @Resource("jdbcTemplate")
    private JdbcTemplate jdbcTemplate;


    // JDBC-backed implementations of the methods on the CorporateEventDao follow...
}

为什么 jdbcTemplate 本身不能直接注入到组件类中,这是有原因的吗?

断续器


答案 1

你可以做你想做的事。JdbcTemplate的javadoc甚至清楚地说:

可以通过使用 DataSource 引用直接实例化在服务实现中使用,也可以在应用程序上下文中进行准备并作为 Bean 引用提供给服务。


答案 2

在春季上下文中.xml添加以下内容和

<bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate">
    <property name="dataSource" ref="dataSource"/>
</bean>

直接您可以通过自动布线来使用jdbcTemplate,例如

  @Autowired JdbcTemplate jdbcTemplate;

例:

this.jdbcTemplate.query("select * from ******",new RowMapper());

推荐