Skip to content

Instantly share code, notes, and snippets.

@KowalczykBartek
Last active August 29, 2015 14:07
Show Gist options
  • Save KowalczykBartek/fd4c33eb67bb01ed6423 to your computer and use it in GitHub Desktop.
Save KowalczykBartek/fd4c33eb67bb01ed6423 to your computer and use it in GitHub Desktop.
<bean id="sessionFactory"
class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
<property name="dataSource" ref="dataSource" />
<property name="mappingResources">
<list>
<!--Tutaj właśnie lista naszych klass.-->
<value>User.hbm.xml</value>
<value>Order.hbm.xml</value>
</list>
</property>
<property name="hibernateProperties">
<props>
<prop key="dialect">org.hibernate.dialect.MySQLDialect</prop>
</props>
</property>
</bean>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment