국비지원/백엔드

230213 H2 Database 이용

선SEON 2023. 2. 13. 10:01

h2 database 이용해보기

-서비스 용도가 아님

dependencies
jar파일 세팅해서 개발환경 맞춰주는것


 

application.properties

server.port=9797

spring.thymeleaf.cache=false

# application.properties 파일

# h2 database web으로 확인
spring.h2.console.enabled=true
spring.h2.console.path=/h2-console

# spring - h2 연결
spring.datasource.driverClassName=org.h2.Driver
spring.datasource.url=jdbc:h2:~/spring-test-db
# embedded Mode : db 데이터 저장 위치 :  ~/spring-test-db
spring.datasource.username=sa
spring.datasource.password=

#초기화를 항상 하겠다
spring.sql.init.mode=always
spring.sql.init.schema-locations=classpath:schema.sql
spring.sql.init.data-locations=classpath:data.sql

 

build.gradle

plugins {
	id 'java'
	id 'war'
	id 'org.springframework.boot' version '3.0.2'
	id 'io.spring.dependency-management' version '1.1.0'
}

group = 'com.study'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '17'

configurations {
	compileOnly {
		extendsFrom annotationProcessor
	}
}

repositories {
	mavenCentral()
}

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:3.0.0'
	compileOnly 'org.projectlombok:lombok'
	developmentOnly 'org.springframework.boot:spring-boot-devtools'
	runtimeOnly 'com.h2database:h2'
	annotationProcessor 'org.projectlombok:lombok'
	providedRuntime 'org.springframework.boot:spring-boot-starter-tomcat'
	testImplementation 'org.springframework.boot:spring-boot-starter-test'
	implementation group: 'nz.net.ultraq.thymeleaf', name: 'thymeleaf-layout-dialect', version: '3.1.0'
}

tasks.named('test') {
	useJUnitPlatform()
}

dependencies에 마지막 thymeleaf 문장 추가

 

로컬호스트 뒤에 /h2-console 입력


static 아래에 있으면 controller에서 못 부름

 

'국비지원 > 백엔드' 카테고리의 다른 글

230220 JPA - mappedBy 사용  (0) 2023.02.20
230215 JPA 시작  (0) 2023.02.15
230209 Thymeleaf + Bootstrap  (0) 2023.02.09
230207 Spring - JUnit Test  (0) 2023.02.07
230203 Spring Boot + MyBatis 로 데이터베이스 연결  (0) 2023.02.03