SqlMapClientFactoryBean中configLocations 配置

在spring配置xml中,通常配置如下:
<bean id="sqlMapClient" class="org.springframework.orm.ibatis.SqlMapClientFactoryBean">
<property name="configLocation">
<value>classpath:sqlmap-config.xml</value>
    </property>
<property name="dataSource">
<ref local="dataSource"/>
    </property>
</bean>

问题是SqlMapClientFactoryBean中的属性是configLocations,而不是configLocation,那么为什么少了一个s呢?原因在意SqlMapClientFactoryBean中的setConfigLocation方法,详细:
public void setConfigLocation(Resource configLocation) {
this.configLocations = (configLocation != null ? new Resource[] {configLocation} : null);
  }


这关系到java中,getter和setter方法的命名法。

你可能感兴趣的:(spring)