Spring Boot Property Injection: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 3: | Line 3: | ||
* [[Spring_Property_Injection_Concepts#Reading_Properties_from_Environment|Spring Property Injection Concepts]] | * [[Spring_Property_Injection_Concepts#Reading_Properties_from_Environment|Spring Property Injection Concepts]] | ||
* [[Spring_Boot#Subjects|Spring Boot]] | * [[Spring_Boot#Subjects|Spring Boot]] | ||
=Overview= | |||
=Dependencies= | |||
<syntaxhighlight lang='groovy'> | |||
dependencies { | |||
implementation('org.springframework.boot:spring-boot') | |||
} | |||
</syntaxhighlight> | |||
This declaration assumes we're using [[Spring_Framework#Spring_Framework_Dependency_Management|Spring Framework Dependency Management System]], for Spring Framework-based libraries, or we're building a [[Spring Boot]] application. |
Revision as of 18:02, 3 December 2018
Internal
Overview
Dependencies
dependencies {
implementation('org.springframework.boot:spring-boot')
}
This declaration assumes we're using Spring Framework Dependency Management System, for Spring Framework-based libraries, or we're building a Spring Boot application.