@Inject
まともに仕事ができません。@Inject
注釈
を使用して xml から Bean を注入しようとしていますが、エラー メッセージが表示されます"java.lang.IllegalArgumentException: 'dataSource' or 'jdbcTemplate' is required"
。
との組み合わせも試しています@Qualifier("dataSource")
が、どこに置いても@Qualifier
と書いてあります"The annotation @Qualifier is disallowed for this location"
。
私はたくさんのドキュメントを読んでいます@Inject
が、xml で宣言された Bean の特別な扱いについて言及しているものは何も見つからないようです。
ただし、Spring は dataSourceBean をスキャンする前に FooDaoImpl Bean を作成しようとしていると思います。
@Inject
xml ファイルで宣言された dataSource Bean を注入するにはどうすればよいですか? を使用して、それは可能@Inject
ですか?
FooDaoImpl.java
@Repository
public class FooDaoImpl extends NamedParameterJdbcDaoSupport implements FooDao {
@Inject
private DataSource dataSource;
DSLContext create = DSL.using(dataSource, SQLDialect.DB2);
}
Spring-Module.xml
<?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">
<context:annotation-config />
<context:component-scan base-package="com.example.foobar" />
<bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource"
destroy-method="close">
<property name="driverClass" value="com.ibm.db2.jcc.DB2Driver" />
<property name="jdbcUrl" value="jdbc:db2://localhost:50000/BLABLA" />
<property name="user" value="PAPAYA" />
<property name="password" value="COCONUT" />
</bean>
乾杯!