MySQL1 [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 다음