Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

spring3-annotation-JdbcDaoSupport

Tags:

spring

dao

jdbc

Use annotation in 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;
}

Caused by: java.lang.IllegalArgumentException: 'dataSource' or 'jdbcTemplate' is required

I do not want to use :

<bean id="termsDao" class="com.manage.base.dao.impl.TestDaoImpl">
    <property name="jdbcTemplate" ref="jdbcTemplate"/>
</bean>

this code set in xml, and “jdbcTemplate” has been defined in other “spring-xml”。

How to solve this problem by an annotation :“'dataSource' or 'jdbcTemplate' is required”

like image 903
weisd Avatar asked Apr 20 '26 09:04

weisd


1 Answers

You can use one of the below approaches. The first one - taking a dataSource is preferred / recommended as you don't expose a SpringFramework class in your public interface. Both will work.

@Repository("testDao")
public class TestDaoImpl extends JdbcDaoSupport implements BaseDao{

  @Autowired
  TestDaoImpl(DataSource dataSource) {
    setDataSource(dataSource);
  }
}

Or

@Repository("testDao")
public class TestDaoImpl extends JdbcDaoSupport implements BaseDao{

  @Autowired
  TestDaoImpl(JDBCTemplate template) {
    setJdbcTemplate(template);
  }
}
like image 97
gkamal Avatar answered Apr 22 '26 23:04

gkamal



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!