in my dao, in each method, when i call jdbctemplate, i should call with new jdbctemplate(). right? or get one static instant of jdbctemplate and reuse ? how about jpatemplate?
|
feedback
|
no, you don't. the | |||
|
feedback
|
|
To add to the other answers, Most DAOs do dot instantiate The same applies to the other DAO template classes (Hibernate, JPA, etc). | |||
|
feedback
|
|
JdbcTemplate is threadsafe so it's completely safe to share one instance of it across your entire application (although only sharing the DataSource used to init the JdbcTemplate may make more sense). Generally one (non-static) instance per class is enough, JdbcTemplate handles threading issues by itself and you'll never hit any concurrency issues with it beyond database locks. | |||
|
feedback
|