LocalDateTime의 데이터가 9시간 차이남
java에서 찍어보면 아래와 같이 현재 시간이 찍힙니다. expires_at : 2020-12-19 20:44:13 issued_at : 2020-12-19 20:44:14 //Java에서 찍어봤을때나오는데이터 { "expires_at": { "date": { "year": 2020, "month": 12, "day": 19 }, "time": { "hour": 20, "minute": 44, "second": 13, "nano": 0 } }, "issued_at": { "date": { "year": 2020, "month": 12, "day": 19 }, "time": { "hour": 18, "minute": 44, "second": 14, "nano": 0 } } } 하지만 DB에 들어간 데이터는..
2020. 12. 19.
DDL Database생성 및 새계정으로 권한 주기
디비생성 create database 디비명; 권한주기 grant select,insert,update,delete,create,drop,ALTER on 디비명.* to '생성아이디'@'localhost' identified by '생성패스워드'; 한번에 다 create database dev11db; grant select,insert,update,delete,create,drop,ALTER on dev11db.* to 'dev11id'@'localhost' identified by 'dev11pw';
2014. 10. 11.