먼저 시큐리티 공부를 위한 프로젝트를 생성해야 하니 다음과 같이 db를 만들어 준다. 프로젝트 기본 의존성설정은 위와 같이 해준다. 그다음 yml파일로 바꾼뒤 아래와 같이 설정해준다. server: port: 8080 servlet: context-path: / encoding: charset: UTF-8 enabled: true force: true spring: datasource: driver-class-name: com.mysql.cj.jdbc.Driver url: jdbc:mysql://localhost:3306/security?serverTimezone=Asia/Seoul username: cos password: cos1234 mvc: view: prefix: /templates/ suffi..