1

在 Spring bean 中使用此配置获取以下错误:

<bean name="/login.htm" class="com.virtusa.web.EmployeeController">
  <property name="service" ref="service"></property>
</bean>

<bean id="service" class="com.virtusa.service.ServiceIMP">
  <property name="dao" ref="EmployeeDAO"></property>
</bean> 

<bean id="EmployeeDAO" class="com.virtusa.dao.EmployeeDAO">
  <property name="myDataSource" ref="myDataSource" />
</bean>

我的弹簧配置文件如下:

private DataSource myDataSource;
private JdbcTemplate jdbcTemplate;

public void setDataSource(DataSource myDataSource) {
    this.myDataSource = myDataSource;
     this.jdbcTemplate = new JdbcTemplate(myDataSource);
 }

我的道

4

1 回答 1

3

既然你有property name="myDataSource",你的 setter 需要被命名setMyDataSource()而不是setDataSource().

于 2012-10-30T15:11:57.020 回答