Skip to content

Instantly share code, notes, and snippets.

Created August 30, 2014 15:19
Show Gist options
  • Save anonymous/cbc0dfd0b37a9b10ffd7 to your computer and use it in GitHub Desktop.
Save anonymous/cbc0dfd0b37a9b10ffd7 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd">
<!-- required resources -->
<import resource="classpath:spring-security.xml"/>
<!-- project config -->
<context:component-scan base-package="com.blabadi.sec.oauth.provider"></context:component-scan>
<!-- Hibernate session factory -->
<bean id="securitySessionFactory" class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
<property name="dataSource">
<ref bean="secDataSource" />
</property>
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop>
<prop key="hibernate.show_sql">false</prop>
<prop key="hibernate.hbm2ddl.auto">update</prop>
</props>
</property>
<property name="mappingResources">
<list>
<value>mapping.hbm.xml</value>
</list>
</property>
</bean>
</beans>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment