在Spring框架中如何更加高效的使用JDBC

2023-07-06   


使用Spring框架提供的模板类JdbcTemplete可以是JDBC更加高效
   代码如下:JdbcTemplate template = new JdbcTemplate(myDataSource);
   DAO类的例子:
   public class StudentDaoJdbc implements StudentDao
   private JdbcTemplate jdbcTemplate;
   public void setJdbcTemplate(JdbcTemplate jdbcTemplate)
   this.jdbcTemplate = jdbcTemplate;
  
   more..
  
   配置文件:
  
  
  
  
  
  
  
  
  
  
  
  
  
  


相关内容:

  1. Spring框架的优点
  2. Spring里面如何配置数据库驱动
  3. Spring对多种ORM框架提供了很好的支持,简单描述在Spring中使用Hibernate的方法
  4. 如何加入Spring到web框架中
  5. Spring框架有哪几部分组成
  6. spring的jdbc与传统的jdbc有什么区别,其核心类有那些?