1. 환경설정
볼빵빵오춘기
Database 설정 create user 'cos'@'%' identified by 'cos1234'; GRANT ALL PRIVILEGES ON *.* TO 'cos'@'%'; create database security; use security; Spring Project 만들기 application.properties ※ 강의에서는 application.yml 사용 spring.jpa.hibernate.ddl-auto=create 는 추후 update 로 변경 #h2 console spring.h2.console.enabled=true spring.h2.console.path=/h2-console #h2 db spring.datasource.url=jdbc:h2:tcp://localhost/~/t..