Hibernete Study Notes
SQLCODE=-301, SQLSTATE=07006, SQLERRMC=9
는 다음 과 같다.
[url]
http://blog.csdn.net/sunyycxy/archive/2006/08/21/1101633.aspx[/url]
2, hibenate 3 에 나타 난 could not initialize proxy - no Session 오류 해결 방법 및 lazy load 의 소개
오류:
org.hibernate.LazyInitializationException: could not initialize proxy - no Session
at org.hibernate.proxy.AbstractLazyInitializer.initialize(AbstractLazyInitializer.java:57)
at org.hibernate.proxy.AbstractLazyInitializer.getImplementation(AbstractLazyInitializer.java:111)
코드:
/** OID Customer */
public Customer findCustomer(Long customer_id){
Session session = sessionFactory.openSession();
Transaction tx = null;
Customer c = null;
try{
tx = session.beginTransaction();
//c = (Customer)session.load(Customer.class, customer_id);
c = (Customer)session.get(Customer.class, customer_id);
tx.commit();
} catch(HibernateException hbe) {
if(tx != null)
tx.rollback();
throw hbe;
} finally {
session.close(); // session.load() , , :could not initialize proxy - no Session;get() 。
}
return c;
}
현상: 코드 의 주석 을 보십시오.
설명:
hibenate 의 Session. class API 에는 다음 과 같은 설명 이 있 습 니 다.
load():This method might return a proxied instance that is initialized on-demand, when a non-identifier method is accessed.
get():This method never returns an uninitialized instance
로드 () 는 로드 지연 을 지원 하지만 get () 은 지원 하지 않 습 니 다.
참고:
http://fireinwind.iteye.com/blog/753578
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Is Eclipse IDE dying?In 2014 the Eclipse IDE is the leading development environment for Java with a market share of approximately 65%. but ac...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.