数据库 – DAO和JDBC的关系?

前端之家收集整理的这篇文章主要介绍了数据库 – DAO和JDBC的关系?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我知道Hibernate实现了ORM(对象关系映射),JDBC实现了什么类型的映射?它实现了DAO吗?我不完全理解DAO如何与JDBC相关……?

解决方法

DAO不是映射. DAO代表数据访问对象.它看起来像这样:
  1. public interface UserDAO {
  2.  
  3. public User find(Long id) throws DAOException;
  4.  
  5. public void save(User user) throws DAOException;
  6.  
  7. public void delete(User user) throws DAOException;
  8.  
  9. // ...
  10. }

对于DAO,JDBC只是一个实现细节.

  1. public class UserDAOJDBC implements UserDAO {
  2.  
  3. public User find(Long id) throws DAOException {
  4. // Write JDBC code here to return User by id.
  5. }
  6.  
  7. // ...
  8. }

Hibernate可能是另一个.

  1. public class UserDAOHibernate implements UserDAO {
  2.  
  3. public User find(Long id) throws DAOException {
  4. // Write Hibernate code here to return User by id.
  5. }
  6.  
  7. // ...
  8. }

JPA可能是另一个(如果你将现有的遗留应用程序迁移到JPA;对于新的应用程序,它会有点奇怪,因为JPA本身实际上是DAO,例如Hibernate和EclipseLink作为可用的实现).

  1. public class UserDAOJPA implements UserDAO {
  2.  
  3. public User find(Long id) throws DAOException {
  4. // Write JPA code here to return User by id.
  5. }
  6.  
  7. // ...
  8. }

它允许您在不更改使用DAO的业务代码的情况下切换UserDAO实现(当然,只有当您正在对接口进行正确编码时).

对于JDBC,你只需要编写很多行来查找/保存/删除所需的信息,而使用Hibernate只需要几行.无论你是否正在使用DAO,Hiberenate作为一个ORM都会从你的手中完成令人讨厌的JDBC工作.

也可以看看:

> I found JPA,or alike,don’t encourage DAO pattern
> JSF Controller,Service and DAO

猜你在找的MsSQL相关文章