Springboot - JPA - h2 사용시에 위와 같은 오류가 발생하는 경우가 있다.
찾아보니 최신 버전의 경우 보안성 때문에 안된다고 한다. 이때 추가로 설정 해주면 연결 가능하다.

 

resources내에 application.properties 파일에 아래 정보를 추가해주자.

 

spring.datasource.url=jdbc:h2:mem:testdb
spring.datasource.driverClassName=org.h2.Driver
spring.datasource.username=sa
spring.datasource.password=
spring.jpa.database-platform=org.hibernate.dialect.H2Dialect

 

다시 http://localhost:8080/h2-console/ 로 접속해서 연결해보면, 정상적으로 실행되는 것을 확인가능

 

 

howtodoinjava.com/spring-boot2/h2-database-example/

 

Spring Boot with H2 Database (In-memory DB) - HowToDoInJava

Learn to configure Spring boot REST with H2 database to create and use an in-memory database in runtime, generally for unit testing or POC purposes.

howtodoinjava.com

 

+ Recent posts