根据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是在Component类中使用datasource的setter创建的。
这样做有什么错吗?这样应用程序中就只有一个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本身直接注入到组件类中?
SGB
4条答案
按热度按时间3htmauhk1#
你可以做你想做的The javadoc of JdbcTemplate甚至清楚地说:
可以在服务实现中通过直接示例化使用DataSource引用,或者在应用程序上下文中准备并作为bean引用提供给服务。
lvmkulzt2#
在spring-context.xml中添加以下内容和
你可以直接使用jdbcTemplate通过自动装配像
例如:
0s7z1bwu3#
你也可以像
PersistenceConfig
MySqlDaoImpl
主要
谢谢
l5tcr1uw4#
注入和共享
JdbcTemplate
代替底层DataSource
在技术上没有什么问题。但是,共享
JdbcTemplate
存在一些设计缺陷,这可能有利于注入DataSource
:JdbcTemplate
的使用是DAO的一个实现细节,我们希望隐藏这些细节JdbcTemplate
是轻量级的,因此为了提高效率而共享它可能是过早的优化JdbcTemplate
并不是没有风险的,因为它有一些可变状态(除了底层DataSource
中的可变状态)这是假设
JdbcTemplate
与其默认配置(fetchSize
、maxRows
等)一起使用的典型情况。如果需要配置,则可以在特定方向上驱动设计,例如从上下文注入的共享预配置JdbcTemplate
,甚至单个DAO拥有的多个JdbcTemplate
示例。