반응형
Gradle에 필수
compile('mysql:mysql-connector-java')
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
driver-class 없는 경우 에러 발생할 수 있으니 확인.
url은 아래와 같은 포맷에서 localhost 위치에 DB public 주소 sanpodb 위치에 database이름 넣기.
spring.datasource.driver-class-name= com.mysql.cj.jdbc.Driver
spring.datasource.url=jdbc:mysql://localhost:3306/sanpodb?characterEncoding=UTF-8&serverTimezone=UTC
spring.datasource.username=root
spring.datasource.password=1234
반응형
'Sanpomichi Project' 카테고리의 다른 글
template might not exist or might not be accessible by any of the configured Template Resolvers (0) | 2020.09.09 |
---|---|
자바 스크립 초 단위 실행 (트래킹) (0) | 2020.09.08 |
Naver Map API Polyline (0) | 2020.09.07 |
Naver Map API 초기 위치 조정 및 Info 삽입 (0) | 2020.09.07 |
Naver Map API 클릭 시 마커 추가 + 삭제 (0) | 2020.09.07 |