0
datasource
はセッターで自動実行されています。 SpringのjavaconfigファイルでBean宣言でdatasource
の値を返そうとしています。何らかの理由で、エラーを特定して表示していません。autowiredパラメータの値を設定できません
ご存じですか?
@Bean(name = "dataSource")
public DataSource dataSource() {
DriverManagerDataSource dataSource = new DriverManagerDataSource();
dataSource.setDriverClassName("org.hsqldb.jdbcDriver");
dataSource.setUrl("xyz");
dataSource.setUsername("xyz");
dataSource.setPassword("xyz");
return dataSource;
}
およびログトレース:
Error creating bean with name 'featureStoreSpringJDBC' defined
in URL [jar:file:/C:home/WEB-INF/lib/ff4j-store-springjdbc.jar!
/org/ff4j/store/FeatureStoreSpringJDBC.class]:
Initialization of bean failed; nested exception
is org.springframework.beans.factory.BeanInitializationException
Property 'dataSource' is required for bean 'featureStoreSpringJDBC'
Beanの設定を追加してください。エラースタックトレース – mvlaicevich