Notice
Recent Posts
Recent Comments
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 |
Tags
- 코테
- 인텔리제이
- git오류
- c언어 제어문
- python자료형
- 참고X
- Workbench
- 스택
- 데베시 1주차
- 파이썬 알고리즘 인터뷰
- python기초
- python기본
- 5장
- 인스타
- Git
- 그리디
- 자료구조
- 코딩테스트
- 1주차(1)
- 도커
- c언어 기본
- git기초
- 최단거리
- 4장
- DP
- 운체 1주차
- c언어
- git 오류
- 백준
- #코린이 #코딩 #할 수 있다
Archives
- Today
- Total
하루살이 개발자
[Spring] DB 연동 본문
1. 의존성 추가하기(build.gradle)
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
// mysql인 경우
implementation 'mysql:mysql-connector-java'
//h2 DB인 경우
runtimeOnly 'com.h2database:h2'
2. application.yml 설정
//application.yml(h2 DB인 경우)
server:
port: 8081
spring:
datasource:
url: jdbc:h2:tcp://localhost/~/fyp0
username: sa
password:
driver-class-name: org.h2.Driver
jpa:
hibernate:
ddl-auto: create
properties:
hibernate:
# show_sql: true
format_sql: true
logging.level:
org.hibernate.SQL: debug
# org.hibernate.type: trace
server:
port: 8081
spring:
datasource:
url: jdbc:mysql://localhost:3306/fyp_db?serverTimezone=UTC&characterEncoding=UTF-8
username: fyp_db
password: 1234
driver-class-name: com.mysql.cj.jdbc.Driver
jpa:
hibernate:
ddl-auto: create
properties:
hibernate:
# show_sql: true
format_sql: true
logging.level:
org.hibernate.SQL: debug
# org.hibernate.type: trace
'Backend > Spring' 카테고리의 다른 글
[Spring JPA] Query Method (0) | 2022.02.15 |
---|---|
[SpringBoot] @Valid 어노테이션으로 Parameter 검증 (0) | 2022.02.15 |
intelliJ(인텔리제이) 단축키 (MAC 기준) (0) | 2022.02.14 |