Console Application with Spring Boot: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 10: | Line 10: | ||
=Starter Dependencies= | =Starter Dependencies= | ||
<syntaxhighlight lang='groovy'> | |||
dependencies { | |||
implementation('org.springframework.boot:spring-boot-starter') | |||
compileOnly('org.projectlombok:lombok:1.18.2') | |||
} | |||
</syntaxhighlight> | |||
=Spring Boot Application Class= | =Spring Boot Application Class= |
Revision as of 01:28, 16 October 2018
External
Internal
Overview
Starter Dependencies
dependencies {
implementation('org.springframework.boot:spring-boot-starter')
compileOnly('org.projectlombok:lombok:1.18.2')
}