December 2015
Intermediate to advanced
264 pages
8h 42m
English
Chapter 1. Bootstarting Spring
Chapter 2. Developing your first Spring Boot application
Listing 2.1. ReadingListApplication.java is both a bootstrap class and a configuration class
Listing 2.2. @SpringApplicationConfiguration loads a Spring application context
Listing 2.3. Using the Spring Boot Gradle plugin
Listing 2.4. Using the Spring Boot Maven plugin and parent starter
Listing 2.5. The Book class represents a book in the reading list
Listing 2.6. A Spring MVC controller that fronts the reading list application
Listing 2.7. The Thymeleaf template that presents a reading list
Chapter 3. Customizing configuration
Listing 3.1. Explicit configuration to override auto-configured ...