[JAVA-961] Standardize packages in spring-security-modules: spring-security-mvc-login
This commit is contained in:
parent
8586e8de2a
commit
06347b6f1f
|
@ -23,7 +23,7 @@
|
||||||
<session-management session-fixation-protection="none"/>
|
<session-management session-fixation-protection="none"/>
|
||||||
</http>
|
</http>
|
||||||
|
|
||||||
<beans:bean name="customLogoutSuccessHandler" class="org.baeldung.security.CustomLogoutSuccessHandler"/>
|
<beans:bean name="customLogoutSuccessHandler" class="com.baeldung.security.CustomLogoutSuccessHandler"/>
|
||||||
|
|
||||||
<authentication-manager>
|
<authentication-manager>
|
||||||
<authentication-provider>
|
<authentication-provider>
|
||||||
|
|
|
@ -25,11 +25,11 @@
|
||||||
|
|
||||||
</http>
|
</http>
|
||||||
|
|
||||||
<beans:bean name="customLogoutSuccessHandler" class="org.baeldung.security.CustomLogoutSuccessHandler"/>
|
<beans:bean name="customLogoutSuccessHandler" class="com.baeldung.security.CustomLogoutSuccessHandler"/>
|
||||||
|
|
||||||
<beans:bean name="customAccessDeniedHandler" class="org.baeldung.security.CustomAccessDeniedHandler" />
|
<beans:bean name="customAccessDeniedHandler" class="com.baeldung.security.CustomAccessDeniedHandler" />
|
||||||
|
|
||||||
<beans:bean id="authenticationFailureHandler" name="customAuthenticationFaiureHandler" class="org.baeldung.security.CustomAuthenticationFailureHandler"/>
|
<beans:bean id="authenticationFailureHandler" name="customAuthenticationFaiureHandler" class="com.baeldung.security.CustomAuthenticationFailureHandler"/>
|
||||||
|
|
||||||
<authentication-manager>
|
<authentication-manager>
|
||||||
<authentication-provider>
|
<authentication-provider>
|
||||||
|
|
|
@ -3,6 +3,6 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
|
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 https://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
|
xsi:schemaLocation="http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
|
||||||
|
|
||||||
<context:component-scan base-package="org.baeldung.controller" />
|
<context:component-scan base-package="com.baeldung.controller" />
|
||||||
|
|
||||||
</beans>
|
</beans>
|
Loading…
Reference in New Issue