在Spring4.x中不支持在ref 的local属性,在spring3.x中可以
错误的写法:
<property name="dataSource">
<ref local="DataSource"/>
</property>
解决方案一:
<property name="dataSource" ref ="DataSource"/>
<property name="dataSource">
<ref bean="DataSource"/>
</property>