2009-11-03 3 views

답변

1

설명서의 3.8. J2EE Application Server integration 장을 읽어 보시기 바랍니다. 그러나 Weblogic 9.x 및 Oracle 10g를 사용하면 다음과 같은 결과가 나옵니다 (부분적이지만 테스트 된 설정)

... 
<property name="hibernate.session_factory_name">hibernate.SessionFactory</property> <!-- JNDI bound Session Factory Name --> 
<property name="hibernate.jndi.url">t3://localhost:port</property> 
<property name="hibernate.jndi.class">weblogic.jndi.WLInitialContextFactory</property> 
<property name="hibernate.jndi.weblogic.jndi.replicateBindings">false</property> <!-- because SessionFactory is not clusterable --> 
<property name="dialect">org.hibernate.dialect.Oracle10gDialect</property> 
... 
관련 문제