programming/spring_security

[spring security] MySQL DB 생성하기

labj 2014. 8. 23. 03:09

1. 프로젝트 database 설정하기

[spring security] MySQL DB 생성하기


Dump20140823.zip

Database 접속 정보는 

/project-sample1/src/main/resources/properties/jdbc.properties 에 선언되어 있습니다.

username = dbuser, password = !password 입니다.


2. MySQL Workbench를 실행하고 Server > Data Import를 선택합니다. 


3. Import from Self-Contained File에서 Dump20140823.sql을 선택합니다.


4. Start Import 를 누릅니다. 


5. Refresh All을 눌러줍니다. 

 


6. 접속할 유저를 생성해 줍니다.

grant all privileges on *.* to 'dbuser'@'localhost' identified by '!password' with grant option;

grant all privileges on *.* to 'dbuser'@'%' identified by '!password' with grant option;


7. 접속 테스트를 합니다. 



[spring security] MySQL DB 생성하기