반응형
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 | 31 |
Tags
- Kafka
- 자료구조공부
- querydsl
- DDD
- 플러터 개발
- 자바공부
- Flutter
- 스프링부트
- JPA 공부
- 알고리즘공부
- 기술면접공부
- 카프카
- JPA스터디
- K8S
- Axon framework
- nestjs
- JPA예제
- nestjs스터디
- 플러터 공부
- nestjs공부
- 코테준비
- 스프링공부
- 기술공부
- JPA
- 스프링 공부
- 코테공부
- 스프링부트공부
- 프로그래머스
- 스프링
- JPA공부
Archives
- Today
- Total
DevBoi
[Spring] Mariadb - JPA 세팅 본문
반응형
매번 찾아보고, 약간의 삽질을 하게 되는 JPA 초기 세팅
Mariadb <-> JPA 세팅방법
0. docker image run
docker run --name mariadb -d -p 3306:3306 --restart=always -e MYSQL_ROOT_PASSWORD=root mariadb
1. build.gradle
plugins {
id 'java'
id 'org.springframework.boot' version '3.2.0-SNAPSHOT'
id 'io.spring.dependency-management' version '1.1.2'
}
group = 'com.boiler.backend'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '17'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
maven { url 'https://repo.spring.io/milestone' }
maven { url 'https://repo.spring.io/snapshot' }
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-web'
runtimeOnly 'org.mariadb.jdbc:mariadb-java-client' // MariaDB
runtimeOnly 'com.h2database:h2'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
}
2.application.yaml
spring:
datasource:
url: jdbc:mariadb://localhost:3306/db1
driver-class-name: org.mariadb.jdbc.Driver
username: root
password: root
jpa:
open-in-view: false
generate-ddl: true
show-sql: true
hibernate:
ddl-auto: update
반응형
'Develop > [JPA]' 카테고리의 다른 글
[QueryDsl] Spring 3.0 이상 Jdk 17 세팅 + 설계 (0) | 2023.08.14 |
---|---|
[Jpa] java.sql.SQLNonTransientConnectionException: (conn=48) Got a packet bigger than 'max_allowed_packet' bytes (0) | 2023.07.22 |
[JPA] QueryDsl 사용하기 (0) | 2023.05.02 |
[QueryDSL] QueryDSL 세팅 (0) | 2023.05.01 |
JPA orphanRemoval 이란? (0) | 2023.01.09 |