백엔드/스프링시큐리티연습 3

스프링부트 시큐리티 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)을 등록 ..

스프링부트 시큐리티 3강 - 시큐리티 회원가입

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)을 등록 ..