Hibernete Study Notes

1. Hibernate 와 각 데이터베이스 간 데이터 형식의 매 핑 관계, hbm 파일 에서 매 핑 설정 오류 가 발생 했 습 니 다. 다음 과 같은 오류 가 발생 할 수 있 습 니 다 (DB2 를 예 로 들 면).
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

좋은 웹페이지 즐겨찾기