Spring Boot Concepts: Difference between revisions
Jump to navigation
Jump to search
Line 18: | Line 18: | ||
=Caching= | =Caching= | ||
Spring Boot automatically configures a suitable cache manager to serve as provider for the relevant cache. <font color=darkgray>TODO: https://docs.spring.io/spring-boot/docs/current/reference/html/boot-features-caching.html. Also see [[Spring_Framework_Concepts#Cache_Abstraction|Spring Framework Cache Abstraction]].</font> | Spring Boot automatically configures a suitable cache manager to serve as provider for the relevant cache. | ||
<font color=darkgray>TODO: https://docs.spring.io/spring-boot/docs/current/reference/html/boot-features-caching.html. Also see [[Spring_Framework_Concepts#Cache_Abstraction|Spring Framework Cache Abstraction]].</font> | |||
=Spring Boot Starter Dependency= | =Spring Boot Starter Dependency= |
Revision as of 02:11, 8 October 2018
Internal
Developer Tools
Additional set of tools that come as part of Spring Boot, and which can make, according to the documentation, "development experience a little more pleasant". The artifacts are identified as org.springframework.boot:spring-boot-devtools. They include the following development-time features:
- ?
- ?
- ?
Development tools are disabled when running as a fully packaged application (such as with java -jar). They should be declared optional in Maven or "compileOnly" in Gradle.
Configuration Processor
Caching
Spring Boot automatically configures a suitable cache manager to serve as provider for the relevant cache.
TODO: https://docs.spring.io/spring-boot/docs/current/reference/html/boot-features-caching.html. Also see Spring Framework Cache Abstraction.