2013-02-17 21:00:08 -03:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
|
|
|
<beans xmlns="http://www.springframework.org/schema/beans"
|
|
|
|
xmlns:sec="http://www.springframework.org/schema/security"
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:schemaLocation="http://www.springframework.org/schema/beans
|
|
|
|
http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
|
|
|
|
http://www.springframework.org/schema/security
|
2018-09-14 17:50:27 -07:00
|
|
|
http://www.springframework.org/schema/security/spring-security-3.2.xsd">
|
2013-02-17 21:00:08 -03:00
|
|
|
|
|
|
|
<sec:authentication-manager alias="authenticationManager">
|
|
|
|
<sec:authentication-provider ref="dbAuthenticationProvider"/>
|
|
|
|
<sec:authentication-provider user-service-ref="userDetailsService"/>
|
|
|
|
</sec:authentication-manager>
|
|
|
|
|
|
|
|
<bean id="dbAuthenticationProvider" class="com.wisemapping.security.AuthenticationProvider">
|
|
|
|
<property name="userDetailsService" ref="userDetailsService"/>
|
|
|
|
<property name="encoder" ref="encoder"/>
|
|
|
|
</bean>
|
|
|
|
|
|
|
|
</beans>
|