Per Frühling documentation, die Schritte Frühling JdbcTemplate ist wie folgt zu verwenden:mit Spring JdbcTemplate - Injizieren Datenquelle vs 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>
Und dann
@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...
}
Grundsätzlich ist die JdbcTemplate erstellt innerhalb der Component-Klasse mit dem Setter für die Datenquelle.
Ist etwas falsch damit, es stattdessen zu tun, so dass es genau eine Instanz von jdbcTemplate in der Anwendung gibt?
<bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate"
p:dataSource-ref="dataSource"
/>
Und dann die jdbcTemplate selbst direkt in die Komponente
@Repository
public class JdbcCorporateEventDao implements CorporateEventDao {
@Resource("jdbcTemplate")
private JdbcTemplate jdbcTemplate;
// JDBC-backed implementations of the methods on the CorporateEventDao follow...
}
Gibt es einen Grund, warum die jdbcTemplate selbst injizieren müssen in die Komponentenklasse nicht direkt injiziert werden?
SGB
kann ein Duplikat von http: // stackoverflo w.com/q/9460507/309399. Aber die Frage wird nicht beantwortet. – SGB