경주장

[인증 API] 사용자 정의 보안 기능 구현 본문

스프링/스프링 시큐리티

[인증 API] 사용자 정의 보안 기능 구현

달리는치타 2022. 1. 9. 18:40

 

@Configuration
@EnableWebSecurity
public class SecurityConfig extends WebSecurityConfigurerAdapter {

    @Override
    protected void configure(HttpSecurity http) throws Exception {
        http
                .authorizeRequests()
                .anyRequest().authenticated()
        .and()
                .formLogin();
    }
}

모든 요청에 대해 인증을 받도록 요구하는 authorization

폼 로그인인증을 제공

 

 

spring:
  security:
    user:
      name: user
      password: 1234

application.yml => 기본 유저 고정