Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 11th, 2012  |  syntax: None  |  size: 1.28 KB  |  hits: 25  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Configuring Hibernate XML with P-Namespace
  2. <bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
  3.     <property name="dataSource" ref="dataSource"/>
  4.  
  5.     <property name="mappingResources">
  6.         <list>
  7.             <value>/com/mysite/domain/Object.hbm.xml</value>
  8.         </list>
  9.     </property>
  10.  
  11.     <property name="hibernateProperties">
  12.         <props>
  13.            <prop key="hibernate.dialect">org.hibernate.dialect.HSQLDialect</prop>
  14.            <prop key="hibernate.show_sql">true</prop>
  15.            <prop key="hibernate.hbm2ddl.auto">update</prop>
  16.         </props>
  17.   </property>
  18. </bean>
  19.        
  20. <bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean"
  21.     p:dataSource-ref="dataSource"
  22.     p:mappingResources-list="/com/mysite/domain/Object.hbm.xml"
  23.     p:hibernateProperties-props=""/>
  24.        
  25. <util:map id="hibernateConfig" >
  26.         <entry key="hibernate.hbm2ddl.auto" value="update" />
  27.         <entry key="hibernate.show_sql" value="true" />
  28.         <!-- Other properties -->
  29.     </util:map>
  30.  
  31.    <bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean"
  32.   p:dataSource-ref="dataSource"
  33.   p:mappingResources-list="/com/mysite/domain/Object.hbm.xml"
  34.   p:hibernateProperties-ref ="hibernateConfig"/>