Hibernate DAO 의 몇 가지 방법.

5436 단어 Hibernate
* save () 방법 은 데이터베이스 에 데 이 터 를 추가 하 는 기능 을 제공 하지만 추가 할 수 밖 에 없습니다. 이 DAO 는 Update () 를 만 드 는 방법 이 없습니다.
* 단, 업데이트 기능 이 있 는 8 save () 방법 으로 간단하게 변경 할 수 있 습 니 다. getSession (). save * (transientInstance);이 문장 은
* getSession().merge(transientInstance);또는 getSession (). saveOrUpdate
*  (transientInstance);
public void save(User transientInstance) {
  log.debug("saving User instance");
  try {
   Session session=getSession();
   Transaction tx=session.beginTransaction();
   session.save(transientInstanc);
   tx.commit();
   session.close();
   log.debug("save successful");
  } catch (RuntimeException re) {
   log.error("save failed", re);
   throw re;
  }
}
delete () 방법 은 삭제 에 사 용 됩 니 다. 실제로 저 희 는 아래 방법 으로 삭제 합 니 다.
public void delete(Integer id){
  log.debug("deleting User instance...");
  User user=findById(id);
  delete(user);
}
public void delete(User persistentInstance) {
  log.debug("deleting User instance");
  try {
   Session session=getSession();
   Transaction tx=session.beginTransaction();
   session.delete(persistentInstance);
   tx.commit();
   session.close();
   log.debug("delete successful");
  } catch (RuntimeException re) {
   log.error("delete failed", re);
   throw re;
  }
}
번호 에 따라 찾기
public User findById(java.lang.Integer id) {
  log.debug("getting User instance with id: " + id);
  try {
   User instance = (User) getSession().get("hbm.User", id);
   return instance;
  } catch (RuntimeException re) {
   log.error("get failed", re);
   throw re;
  }
}
findByExample () 방법 이 실현 하 는 기능 은 'select * from Usertable' 에 해당 하 는 기능 은 모든 데 이 터 를 조회 하 는 것 입 니 다.
public List findByExample(User instance) {
  log.debug("finding User instance by example");
  try {
   List results = getSession().createCriteria("hbm.User").add(
     Example.create(instance)).list();
   log.debug("find by example successful, result size: "
     + results.size());
   return results;
  } catch (RuntimeException re) {
   log.error("find by example failed", re);
   throw re;
  }
}
findByProperty () 방법 은 조건 에 따라 조회 하 는 방법 을 유연 하 게 제공 하 는 데 사용 되 며, 어떤 방식 으로 조회 해 야 하 는 지 스스로 정의 할 수 있 습 니 다.
public List findByProperty(String propertyName, Object value) {
  log.debug("finding User instance with property: " + propertyName
    + ", value: " + value);
  try {
   String queryString = "from User as model where model."
     + propertyName + "= ?";
   Query queryObject = getSession().createQuery(queryString);
   queryObject.setParameter(0, value);
   return queryObject.list();
  } catch (RuntimeException re) {
   log.error("find by property name failed", re);
   throw re;
  }
}
public List findByName(Object name) {
  return findByProperty(NAME, name);
}
public List findBySex(Object sex) {
  return findByProperty(SEX, sex);
}
public List findByAge(Object age) {
  return findByProperty(AGE, age);
}
public List findAll() {
  log.debug("finding all User instances");
  try {
   String queryString = "from User";
   Query queryObject = getSession().createQuery(queryString);
   return queryObject.list();
  } catch (RuntimeException re) {
   log.error("find all failed", re);
   throw re;
  }
}
들 어 오 는 detached 상태의 대상 의 속성 을 지구 화 대상 에 복사 하고 이 지구 화 대상 을 되 돌려 줍 니 다.  이 session 에 연 결 된 지구 화 대상 이 없 으 면 하 나 를 불 러 옵 니 다. 들 어 오 는 대상 이 저장 되 지 않 으 면 복사 본 을 저장 하고 지구 대상 으로 되 돌려 줍 니 다. 들 어 오 는 대상 은 detached 상 태 를 유지 합 니 다.
업데이트 데이터 로 사용 가능
public User merge(User detachedInstance) {
  log.debug("merging User instance");
  try {
    Session session=getSession();
   Transaction tx=session.beginTransaction();
  
   User result = (User) session.merge(detachedInstance);
   tx.commit();
   session.close();
   log.debug("merge successful");
   return result;
  } catch (RuntimeException re) {
   log.error("merge failed", re);
   throw re;
  }
}
들 어 오 는 대상 을 영구적 으로 저장 합 니 다. 대상 이 저장 되 지 않 으 면 save 방법 으로 저장 합 니 다. 대상 이 저장 되 어 있 으 면 update 방법 으로 대상 을 Session 과 다시 연결 합 니 다.
public void attachDirty(User instance) {
  log.debug("attaching dirty User instance");
  try {
   getSession().saveOrUpdate(instance);
   log.debug("attach successful");
  } catch (RuntimeException re) {
   log.error("attach failed", re);
   throw re;
  }
}
들 어 오 는 대상 상 태 를 Transient 상태 로 설정 합 니 다.
public void attachClean(User instance) {
  log.debug("attaching clean User instance");
  try {
   getSession().lock(instance, LockMode.NONE);
   log.debug("attach successful");
  } catch (RuntimeException re) {
   log.error("attach failed", re);
   throw re;
  }
}

                            

좋은 웹페이지 즐겨찾기