[스프링 부트] chapter 36. 스프링 시큐리티 1부 Starter-Security

스프링 시큐리티 1부 Starter-Security

단순 뷰맵핑의 경우 WebMvc설정으로 뷰맵핑 가능

@Configuration
public class WebConfig implements WebMvcConfigurer {

    @Override
    public void addViewControllers(ViewControllerRegistry registry) {
        registry.addViewController("/hello").setViewName("hello");
    }
}

스프링 시큐리티

스프링 부트 시큐리티 자동 설정