org.h2.jdbc.JdbcSQLNonTransientException: General error: "The write format 1 is smaller than the supported format 2 [2.1.212/5]" [50000-212]

초보개발·2022년 5월 26일
0
  • 환경
    spring boot 2.7.0
    java 11

  • build.gradle
    com.h2database:h2에 해당 프로젝트에 호환되는 버전인 1.4.200을 추가해준다.

	dependencies {
  		...
    	implementation 'com.h2database:h2:1.4.200'
	}

참고
https://www.inflearn.com/questions/250718

0개의 댓글