I'm moving from hibernate to jdbctemplate in spring, and need some guidance.
I'm going to create a UserDao and then a UserDaoImpl.
In my servlet.xml file I have my datasource bean created.
Now I'm reading this: http://static.springsource.org/spring/docs/2.0.x/reference/jdbc.html
It says to have a private method:
private JdbcTemplate jdbcTemplate;
So can I create my UserDaoImpl like this:
public class UserDaoImpl implements UserDao {
private JdbcTemplate jdbcTemplate;
public void setDataSource(DataSource dataSource) {
this.jdbcTemplate = new JdbcTemplate(dataSource);
}
}
- Do I need the set datasource there? Or can I use some kind of annotation?
- Could I move this code to a base class like GenericDao/ GenericDaoImpl? (if so, do I keep the jdbcTempalte as private or protected?
With hibernate I was able to add basic queries in my base class using generics, I'm guessing I can't do that with jdbc since nothing is really mapped to my entities correct?
update
So my GenericDaoImpl looks like:
public class GenericDaoImpl<T> extends JdbcDaoSupport implements GenericDao<T> {
private JdbcTemplate jdbcTemplate;
}
Then my UserDaoImpl looks like:
@Repository
public class UserDaoImpl extends GenericDaoImpl<User> implements UserDao {
}
- I can't use this.jdbcTemplate in my methods now? What do I do?
- In my GenericDaoImpl I can have a setDataSource as it is marked final by JdbcDaoSupport.
How do I autowire the datasource now?