session.createQuery("select ccrd.createdDate , s1 "
+ "from CrComponentRelDependency ccrd "
+ "left outer join ccrd.crComponentDependencyDtls s1 "
+ "where ccrd.crComponent.componentSeq= :COMPONENT_SEQ "
+ "and (ccrd.referencedComponentVer IS NULL) "
.setParameter("COMPONENT_SEQ", componentId);
このクエリはccrd.createdDateに有効な値を提供していますが、 s1エンティティに対してNULLを返しています。CrComponentRelDependencyとcrComponentDependencyDtlsの間に1対1の関係を定義しました。