Skip to content

Latest commit

 

History

History
16 lines (10 loc) · 187 Bytes

SpringbootH2.md

File metadata and controls

16 lines (10 loc) · 187 Bytes

Spring boot h2

  • Inmemory database

Pom.xml:


<dependency>  
<groupId>com.h2database</groupId>  
<artifactId>h2</artifactId>  
<scope>runtime</scope>  
</dependency>