在 dao 中使用注解
@Repository("testDao")
public class TestDaoImpl extends JdbcDaoSupport implements BaseDao{
@Override
public Object addObject(String sqlid, Object obj) {
// TODO Auto-generated method stub
return null;
}
引起:java.lang.IllegalArgumentException:需要“dataSource”或“jdbcTemplate”
我不想用:</p>
<bean id="termsDao" class="com.manage.base.dao.impl.TestDaoImpl">
<property name="jdbcTemplate" ref="jdbcTemplate"/>
</bean>
这段代码是在xml中设置的,而“jdbcTemplate”已经在其他“spring-xml”中定义了。</p>
如何通过注解解决这个问题:“'dataSource' or 'jdbcTemplate' is required”</p>