DB를 연결하지 않고 서버를 실행하면
DB를 연결해주라는 오류 문구가 나오게 된다
❗연결 방법
application.properties에서 설정을 통해 DB를 연결할 수 있다.
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
spring.datasource.username=root
spring.datasource.password=비밀번호
spring.datasource.url=jdbc:mysql://localhost:3306/[스키마(데이터베이스)이름]?characterEncoding=UTF-8&serverTimezone=UTC
application.yml이라면 아래의 포스팅에서 확인할 수 있다.
https://radiant515.tistory.com/352
728x90
반응형
'🔻Back-End > Spring' 카테고리의 다른 글
[Spring error]Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception (0) | 2022.10.29 |
---|---|
[Spring error] Column 'content' cannot be null (0) | 2022.10.29 |
[Spring] @RestController 적용하기 (0) | 2022.10.27 |
[Spring] REST API (0) | 2022.10.27 |
[Spring] localhost:8080에 로그인 화면 보일 때 (0) | 2022.10.23 |