H2

JVM/Spring

[Spring] h2 설정

OS M1 MAX macOS Ventura 13.2 PROJECT java - 11 kotlin - 1.6.21 spring - 2.7.8 build.gradle.kts dependencies { ... runtimeOnly("com.h2database:h2") } application.yml spring: h2: console: enabled: true path: /h2-console datasource: url: jdbc:h2:mem:test username: sa password: driverClassName: org.h2.Driver platform: h2 접근 url - http://localhost:8080/h2-console 에러사항 원인 데이터베이스가 존재하지 않아서 발생되는 문제입니다. ..

Hyo Kim
'H2' 태그의 글 목록