본문 바로가기
개발/Database

[H2] H2 데이터베이스 의존성 추가 시 버전 주의하기

by Allonsy 2022. 3. 31.
반응형

https://www.h2database.com/html/main.html

 

H2 Database Engine

H2 Database Engine Welcome to H2, the Java SQL database. The main features of H2 are: Very fast, open source, JDBC API Embedded and server modes; in-memory databases Browser based Console application Small footprint: around 2.5 MB jar file size     Supp

www.h2database.com

H2 데이터베이스를 연습용 디비로 많이 사용한다

의존성을 추가 해줄 때 다운로드 받은 버전과 동일한 버전으로 추가해주도록 하자!

 

        <dependency>
            <groupId>com.h2database</groupId>
            <artifactId>h2</artifactId>
            <version>2.1.210</version>
        </dependency>
반응형

댓글