2012-02-12 02:55:42 -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
|
|
|
|
http://www.springframework.org/schema/security/spring-security-3.1.xsd">
|
|
|
|
|
2012-02-21 16:36:19 -03:00
|
|
|
<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
|
|
|
|
<property name="location" value="/WEB-INF/app.properties"/>
|
|
|
|
</bean>
|
|
|
|
|
|
|
|
|
2012-02-12 02:55:42 -03:00
|
|
|
<bean id="encoder"
|
|
|
|
class="com.wisemapping.security.CustomPasswordEncoder"/>
|
|
|
|
|
2012-02-12 21:57:11 -03:00
|
|
|
<sec:http pattern="/css/**" security="none"/>
|
|
|
|
<sec:http pattern="/js/**" security="none"/>
|
|
|
|
<sec:http pattern="/images/**" security="none"/>
|
2012-02-21 14:22:43 -03:00
|
|
|
<sec:http pattern="/icons/**" security="none"/>
|
2012-02-12 02:55:42 -03:00
|
|
|
<sec:http pattern="/favicon.ico" security="none"/>
|
2012-02-12 21:57:11 -03:00
|
|
|
<sec:http pattern="/c/login.htm" security="none"/>
|
2012-02-12 02:55:42 -03:00
|
|
|
<sec:http pattern="/c/userregistration.htm" security="none"/>
|
|
|
|
<sec:http pattern="/c/activation.htm" security="none"/>
|
|
|
|
<sec:http pattern="/c/forgotpassword.htm" security="none"/>
|
|
|
|
<sec:http pattern="/c/home.htm" security="none"/>
|
|
|
|
<sec:http pattern="/c/try.htm" security="none"/>
|
|
|
|
<sec:http pattern="/c/search.htm" security="none"/>
|
|
|
|
<sec:http pattern="/c/keyboard.htm" security="none"/>
|
2012-02-12 21:57:11 -03:00
|
|
|
<sec:http pattern="/c/embeddedview.htm" security="none"/>
|
2012-02-12 02:55:42 -03:00
|
|
|
<sec:http pattern="/c/publicview.htm" security="none"/>
|
2012-02-29 20:22:27 -03:00
|
|
|
<sec:http pattern="/service/transform*" security="none"/>
|
2012-02-19 21:07:24 -03:00
|
|
|
|
2012-02-21 14:22:43 -03:00
|
|
|
<sec:http use-expressions="true" create-session="never" pattern="/service/**">
|
|
|
|
<sec:intercept-url pattern="/service/admin/users/**" access="isAuthenticated() and hasRole('ROLE_ADMIN')"/>
|
2012-02-20 14:42:07 -03:00
|
|
|
<sec:intercept-url pattern="/service/**" access="isAuthenticated()"/>
|
2012-02-12 21:57:11 -03:00
|
|
|
<sec:http-basic/>
|
|
|
|
</sec:http>
|
2012-02-12 02:55:42 -03:00
|
|
|
|
2012-04-05 00:25:34 -03:00
|
|
|
<sec:http use-expressions="true" access-denied-page="/c/login.htm">
|
2012-02-12 21:57:11 -03:00
|
|
|
<sec:intercept-url pattern="/c/*.htm" access="isFullyAuthenticated()"/>
|
2012-04-05 00:25:34 -03:00
|
|
|
<sec:form-login login-page="/c/login.htm"
|
|
|
|
default-target-url='/c/mymaps.htm'
|
2012-04-05 14:18:13 -03:00
|
|
|
always-use-default-target='false'
|
2012-04-05 00:25:34 -03:00
|
|
|
authentication-failure-url="/c/login.htm?login_error=2"
|
2012-05-13 18:28:00 -03:00
|
|
|
login-processing-url="/c/j_spring_security_check"/>
|
2012-04-05 00:40:39 -03:00
|
|
|
<sec:remember-me key="wisemapping-hashed-key"/>
|
2012-02-12 02:55:42 -03:00
|
|
|
<sec:logout logout-url="/c/logout.htm" invalidate-session="true" logout-success-url="/c/login.htm"/>
|
|
|
|
</sec:http>
|
|
|
|
|
2012-02-12 21:57:11 -03:00
|
|
|
<sec:authentication-manager alias="authenticationManager">
|
2012-02-12 02:55:42 -03:00
|
|
|
<sec:authentication-provider ref="dbAuthenticationProvider"/>
|
|
|
|
<sec:authentication-provider user-service-ref="userDetailsService"/>
|
|
|
|
</sec:authentication-manager>
|
|
|
|
|
|
|
|
<bean id="dbAuthenticationProvider" class="com.wisemapping.security.AuthenticationProvider">
|
2012-02-21 16:36:19 -03:00
|
|
|
<property name="userDetailsService" ref="userDetailsService"/>
|
2012-02-12 02:55:42 -03:00
|
|
|
<property name="encoder" ref="encoder"/>
|
|
|
|
</bean>
|
|
|
|
|
2012-02-21 16:36:19 -03:00
|
|
|
<bean id="userDetailsService" class="com.wisemapping.security.UserDetailsService">
|
2012-02-12 02:55:42 -03:00
|
|
|
<property name="userManager" ref="userManager"/>
|
2012-02-21 16:36:19 -03:00
|
|
|
<property name="adminUser" value="${admin.user}"/>
|
2012-02-12 02:55:42 -03:00
|
|
|
</bean>
|
2012-04-05 00:25:34 -03:00
|
|
|
|
2012-02-12 02:55:42 -03:00
|
|
|
</beans>
|