wisemapping-open-source/wise-webapp/src/main/webapp/WEB-INF/wisemapping-security-db.xml

21 lines
996 B
XML
Raw Normal View History

2013-02-18 01:00:08 +01: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
2020-11-07 06:35:54 +01:00
http://www.springframework.org/schema/beans/spring-beans-4.2.xsd
2013-02-18 01:00:08 +01:00
http://www.springframework.org/schema/security
2020-11-07 06:35:54 +01:00
http://www.springframework.org/schema/security/spring-security-4.2.xsd">
2013-02-18 01:00:08 +01: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>