Framework/Hibernate

hibernate XML 속성 값 정리

jeeyong 2012. 8. 13. 14:03

1. lazy=[true | false]

 객체 생성시 relation된 target 테이블값을 미리 가져오는지 여부. true일경우 미리 가져오지않음.  false일 경우 미리 가져옴.

 

2. not-found=[exception | ignore]

 해당컬럼의 데이터값이 target table에 없을 경우. exception일 경우 오류 발생, ignore일 경우 그냥 넘어감.