Spring H2 Support: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 5: Line 5:


=Overview=
=Overview=
<syntaxhighlight lang='groovy'>
dependencies {
    implementation('org.springframework.boot:spring-boot-starter-data-jpa')
    runtimeOnly('com.h2database:h2')
}
</syntaxhighlight>


=SpringBoot DevTools H2 Console=
=SpringBoot DevTools H2 Console=


{{Internal|SpringBoot DevTools H2 Console|SpringBoot DevTools H2 Console}}
{{Internal|SpringBoot DevTools H2 Console|SpringBoot DevTools H2 Console}}

Revision as of 18:33, 18 October 2018

Internal

Overview

dependencies {

    implementation('org.springframework.boot:spring-boot-starter-data-jpa')
    runtimeOnly('com.h2database:h2')
}

SpringBoot DevTools H2 Console

SpringBoot DevTools H2 Console