본문 바로가기
Java/Spring with Error

[해결 방법] Unable to create requested service

by HJ0216 2023. 5. 25.

🟦 기본 환경: IDE: IntelliJ, Language: Java

 

 

발생 Error

SpringBoot에서 다음 Source Code를 실행할 경우,

🚨다음과 같은 Error 발생

nested exception is org.hibernate.service.spi.ServiceException: Unable to create requested service

 

 

발생 원인

H2 DB를 실행하지 않고 Test 진행

 

 

해결 방법

H2 DB를 실행

1. cmd 상 h2 DB가 설치된 위치로 이동 후, h2.sh 또는 h2.bat 실행

2. H2 콘솔 페이지 로드 시, 연결 버튼 클릭

 

 

 

참고 자료

 

Unable to create requested service [org.hibernate.engine.jdbc.env.spi.JdbcEnvironment] 에러 - 인프런 | 질문 & 답변

제가 오랜만에 강의를 들어와서 진행하고 있습니다Unable to create requested service [org.hibernate.engine.jdbc.env.spi.JdbcEnvironment]이 에러가 발생하는데 h2 데이터베이스 연결은 했는데요제 applicat...

www.inflearn.com

 

 

H2 Database 설치, 서버 실행, 접속 방법 (Windows, MacOS)

H2 Database 설치, 서버 실행, 접속 방법 (Windows, MacOS) H2 데이터베이스는 설치가 필요 없고 용량이 매우 가벼우며 웹용 콘솔(쿼리툴)을 제공하여 개발용 로컬 DB로 사용하기 좋은 데이터베이스이다. H

atoz-develop.tistory.com