Spring PostgreSQL Support: Difference between revisions
Jump to navigation
Jump to search
(Created page with "=Internal= * Spring Data =Overview=") |
|||
Line 4: | Line 4: | ||
=Overview= | =Overview= | ||
<syntaxhighlight lang='groovy'> | |||
dependencies { | |||
implementation('org.springframework.boot:spring-boot-starter-data-jpa') | |||
runtimeOnly('org.postgresql:postgresql') | |||
} | |||
</syntaxhighlight> |
Revision as of 18:36, 18 October 2018
Internal
Overview
dependencies {
implementation('org.springframework.boot:spring-boot-starter-data-jpa')
runtimeOnly('org.postgresql:postgresql')
}