2019-10-31 20:43:47 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
<beans:beans xmlns="http://www.springframework.org/schema/security" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:beans="http://www.springframework.org/schema/beans"
|
|
|
|
|
xsi:schemaLocation="
|
|
|
|
|
http://www.springframework.org/schema/security
|
|
|
|
|
http://www.springframework.org/schema/security/spring-security.xsd
|
|
|
|
|
http://www.springframework.org/schema/beans
|
|
|
|
|
http://www.springframework.org/schema/beans/spring-beans.xsd"
|
|
|
|
|
>
|
|
|
|
|
|
|
|
|
|
<http create-session="stateless" use-expressions="true">
|
|
|
|
|
|
|
|
|
|
<http-basic entry-point-ref="myBasicAuthenticationEntryPoint"/>
|
|
|
|
|
|
|
|
|
|
</http>
|
|
|
|
|
|
|
|
|
|
<authentication-manager>
|
|
|
|
|
<authentication-provider>
|
|
|
|
|
<user-service>
|
|
|
|
|
<user name="user1" password="{noop}user1Pass" authorities="ROLE_USER"/>
|
|
|
|
|
</user-service>
|
|
|
|
|
</authentication-provider>
|
|
|
|
|
</authentication-manager>
|
|
|
|
|
|
|
|
|
|
<global-method-security pre-post-annotations="enabled"/>
|
|
|
|
|
|
2020-03-19 21:27:36 +01:00
|
|
|
<beans:bean id="myBasicAuthenticationEntryPoint" class="com.baeldung.basic.MyBasicAuthenticationEntryPoint" />
|
2019-10-31 20:43:47 -05:00
|
|
|
|
|
|
|
|
</beans:beans>
|