Recent Posts
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- terminal
- PersistenceContext
- PytestPluginManager
- taint
- 자원부족
- 오블완
- 코루틴 컨텍스트
- table not found
- tolerated
- 개성국밥
- 티스토리챌린지
- vfr video
- preemption #
- 헥사고날아키텍처 #육각형아키텍처 #유스케이스
- JanusWebRTCServer
- mp4fpsmod
- 깡돼후
- 겨울 부산
- 달인막창
- JanusWebRTCGateway
- kotlin
- 코루틴 빌더
- VARCHAR (1)
- addhooks
- JanusWebRTC
- pytest
- Value too long for column
- JanusGateway
- python
- Spring Batch
Archives
너와 나의 스토리
[Spring] MySQL 연동 - 설정하기 본문
반응형
1. MySQL 설치
- homebrew를 이용하여 설치
- $ brew install mysql
2. 필요한 dependency 추가
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-jdbc'
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.mybatis.spring.boot:mybatis-spring-boot-starter:2.1.4'
compileOnly 'org.projectlombok:lombok'
developmentOnly 'org.springframework.boot:spring-boot-devtools'
runtimeOnly 'mysql:mysql-connector-java'
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
3. application.properties에서 db 설정하기
spring.datasource.hikari.driver-class-name=com.mysql.cj.jdbc.Driver
spring.datasource.hikari.jdbc-url=jdbc:mysql://localhost:3306/board?useUnicode=true&characterEncoding=utf-8&serverTimezone=UTC
spring.datasource.hikari.username=root
spring.datasource.hikari.password=123123
spring.datasource.hikari.connection-test-query=SELECT 1
- "spring.datasource.hikari.jdbc-url"부분에서 "serverTimezone=UTC"를 추가하기 전에는 "The server time zone value ‘KST’ is unrecognized or represents more than one time zone" 에러가 발생했었다.
- 위 에러는 mysql-connector-java 버전 5.1.X 이후 버전부터 KST 타임존을 인식하지 못하는 이슈 때문이라고 한다.
- "serverTimezone=UTC"를 추가해 문제를 해결하자.
반응형
'개발 > Spring Boot' 카테고리의 다른 글
[Spring] 게시판 만들기(1) - 디비 세팅/DTO 생성/Mapper 영역 (2) | 2021.01.11 |
---|---|
[Spring] 마이바티스(MyBatis)란? & 연동하는 방법 (0) | 2021.01.11 |
Spring DI, CI (0) | 2020.08.23 |
Spring security - 용어 정리/작동 방식/JWT (0) | 2020.08.22 |
HATEOAS 설정하기 - swagger와 함께 사용하기 (에러 해결) (0) | 2020.08.04 |
Comments