2017-03-03 00:21:28 +01:00
|
|
|
package org.baeldung;
|
|
|
|
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
import org.springframework.context.annotation.Configuration;
|
|
|
|
import org.springframework.security.config.annotation.authentication.builders.AuthenticationManagerBuilder;
|
|
|
|
import org.springframework.security.config.annotation.web.builders.HttpSecurity;
|
|
|
|
import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;
|
|
|
|
import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity;
|
|
|
|
|
|
|
|
@Configuration
|
|
|
|
@EnableWebSecurity
|
|
|
|
public class WebSecurityConfig extends WebSecurityConfigurerAdapter {
|
|
|
|
@Override
|
|
|
|
protected void configure(HttpSecurity http) throws Exception {
|
|
|
|
http
|
|
|
|
.authorizeRequests()
|
|
|
|
.antMatchers("/", "/home").permitAll()
|
|
|
|
.anyRequest().authenticated()
|
|
|
|
.and()
|
|
|
|
.formLogin()
|
|
|
|
.loginPage("/login")
|
|
|
|
.permitAll()
|
|
|
|
.and()
|
|
|
|
.logout()
|
|
|
|
.permitAll();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Autowired
|
|
|
|
public void configureGlobal(AuthenticationManagerBuilder auth) throws Exception {
|
|
|
|
auth
|
|
|
|
.inMemoryAuthentication()
|
2017-03-10 22:30:38 +01:00
|
|
|
.withUser("user").password("password").roles("USER", "ACTUATOR");
|
2017-03-03 00:21:28 +01:00
|
|
|
}
|
|
|
|
}
|