springSecurity2 [2강] SecurityConfig 설정 (Spring Security v6.1) - SpringSecurity 이용시, 로그인 페이지와 로그아웃 페이지는 이미 만들어져 있고, SecurityConfig 파일 생성 전에는 http://localhost:8080/login은 SpringSecurity가 다음과 같이 낚아 챈다. 이제, SecurityConfig 파일을 생성해보자 WebSecurityConfigurerAdapter가 지원이 중단되면서, 기존과 달리 SecurityFilterChain을 사용해서 SecurityConfig를 설정해야한다. @Configuration // IoC 빈(bean)을 등록 public class SecurityConfig { @Autowired private PrincipalOauth2UserService principalOauth2UserService.. 2023. 7. 26. [1강] SpringSecurity DB 적용 먼저 데이터 베이스를 만든다. create user '사용자이름' identified by '비밀번호'; Grant All privileges on *.* to '사용자이름'; create database 데이터베이스이름; use 데이터베이스이름; ex) 나의 경우는 security 데이터 베이스를 만들었다. create user 'youngseon' identified by '1234'; Grant All privileges on *.* to 'youngseon'; create database security; use security; create database와 create schema의 차이는 MySQL에서는 없으나, 다른 DB 제품에서는 구별되기도 한다. Spring 파일 생성시에, Spring.. 2023. 7. 26. 이전 1 다음