这可能是一个非常新手的问题,但我已经搜索过,要么我的理解存在很大差距,要么做错了我无法弄清楚的事情。
在我的上下文文件中,这是一个摘录
<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="driverClassName" value="${datasource.driverClassName}" />
<property name="url" value="${datasource.url}" />
<property name="username" value="${datasource.username}" />
<property name="password" value="${datasource.password}" />
</bean>
<bean id="myBeanOne" class="a.b.c.myBeanOne">
<property name="dataSource" ref="dataSource" />
</bean>
现在在 myBeanOne 我有:
private DataSource dataSource;
private JdbcTemplate jdbcTemplate;
@Autowired
public void setDataSource (DataSource dataSource) {
this.jdbcTemplate = new JdbcTemplate(dataSource);
}
public void myMethod() {
String sql = "'My generic SQL update query'";
try {
this.jdbcTemplate.update(sql);
} catch (org.springframework.dao.EmptyResultDataAccessException ex) {
}
System.exit(0);
}
当我尝试在调用 setDataSource 的行上执行此操作时,出现此错误:
ERROR org.springframework.integration.handler.LoggingHandler
org.springframework.integration.MessageHandlingException:
java.lang.NullPointerException
在线上:this.jdbcTemplate.update(sql);
我已经尝试了十种不同的配置来让它工作,但我似乎做不到。任何帮助表示赞赏,谢谢。
编辑:根据 Luiggi 的评论:
//in yet another classes run method
myBeanOne bOne = SomeOtherClass.create(); //just returns new myBeanOne
bOne.myMethod();
SomeOtherClass 或此类在上下文中都没有被归类为 bean,或者在上下文中没有任何存在。
我知道这是一个非常基本的问题,但我正在努力解决这个问题。
感谢您的耐心等待。