Mybatis sqlMapping을 제공하는 dependency
maven으로 생성했기 때문에
pom.xml에 mysql dependency 추가
DB 연결하자마자 바로 500 에러 발생 ~~ ! !
{
"timestamp": "2021-09-08T15:54:38.186+00:00",
"status": 500,
"error": "Internal Server Error",
"path": "/user/1"
}
# Spring boot 500 에러 원인..
-- Access denied for user '내컴퓨터사용자명'@'localhost' (using password: YES) 라고 떴다.
파악해보니
create user '내컴퓨터사용자명'@'localhost' identified by '비밀번호입력!';
grant all privileges on 데이터베이스명.* to 내컴퓨터사용자명@'localhost';
요걸로 해결
나중에 추가로
https://doozi0316.tistory.com/entry/Spring-Boot-MyBatis-MySQL-%EC%97%B0%EB%8F%99-%EB%B0%A9%EB%B2%95 참고
'DEV > SpringFramework' 카테고리의 다른 글
private method Test (0) | 2022.07.05 |
---|---|
Lombok 어노테이션 (0) | 2022.06.20 |
[Spring] Build 후 실행 (0) | 2021.09.12 |
[Spring] application. properties 변수 맵핑 (0) | 2021.09.12 |