스프링부트 시큐리티 4강 - 시큐리티 로그인(다시 공부 해야함)
package springSecurity.demo.config; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.security.config.annotation.web.builders.HttpSecurity; import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder; import org.springframework.security.web.SecurityFilterChain; @Configuration // IoC 빈(bean)을 등록 ..