Hibernate DAO 의 몇 가지 방법.
5436 단어 Hibernate
* 단, 업데이트 기능 이 있 는 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;
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
[JPA] 즉시로딩(EAGER)과 지연로딩(LAZY) (왜 LAZY 로딩을 써야할까?) (1)Proxy는 이 글의 주제인 즉시로딩과 지연로딩을 구현하는데 중요한 개념인데, 일단 원리는 미뤄두고 즉시로딩과 지연로딩이 무엇인지에 대해 먼저 알아보자. 눈 여겨 볼 곳은 'fetch = FetchType.EAGER...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.