Please enable JavaScript.
Coggle requires JavaScript to display documents.
Spring Boot - Coggle Diagram
Spring Boot
-
Auto-Configuration
If it’s so common for many application, then why should you have to write it (declare various beans)?
-
Remove boilerplate code (the code that you often
have to write over and over again to accomplish common and otherwise simple tasks)
-
-
Profile
-
provide a way to segregate parts of your application configuration and make it be available only in certain environments
-
-
-
-
General Informations
-
[Starter Dependency] - Spring boot has been tested to ensure that all of the dependencies pulled in are compatile with each other
gradle dependencies command shows a tree that includes every library in the project with the version
-
Starter Dependencies
Overriding Starter
compile("org.springframework.boot:spring-boot-starter-web") {
exclude group: 'com.fasterxml.jackson.core'
}
-
Is essentially a maven POM that defines transitive dependencies on other libraries that together provide support for some functionality/target the same goal
-
-
-
-
-