Book Image

Spring Boot 2.0 Cookbook - Second Edition

By : Alex Antonov
Book Image

Spring Boot 2.0 Cookbook - Second Edition

By: Alex Antonov

Overview of this book

The Spring framework provides great flexibility for Java development, which also results in tedious configuration work. Spring Boot addresses the configuration difficulties of Spring and makes it easy to create standalone, production-grade Spring-based applications. This practical guide makes the existing development process more efficient. Spring Boot Cookbook 2.0 Second Edition smartly combines all the skills and expertise to efficiently develop, test, deploy, and monitor applications using Spring Boot on premise and in the cloud. We start with an overview of the important Spring Boot features you will learn to create a web application for a RESTful service. Learn to fine-tune the behavior of a web application by learning about custom routes and asset paths and how to modify routing patterns. Address the requirements of a complex enterprise application and cover the creation of custom Spring Boot starters. This book also includes examples of the new and improved facilities available to create various kinds of tests introduced in Spring Boot 1.4 and 2.0, and gain insights into Spring Boot DevTools. Explore the basics of Spring Boot Cloud modules and various Cloud starters to make applications in “Cloud Native” and take advantage of Service Discovery and Circuit Breakers.
Table of Contents (11 chapters)

Creating a JPA component test

Most of our previous test examples had to start up the entire application and configure all the beans in order to execute. While that is not a big issue for our simple application, which has little code, it might prove an expensive and lengthy process for some larger, more complex enterprise-grade services. Considering that one of the key aspects of having good test coverage is a low execution time, we might want to opt out of having to bootstrap the entire application in order to test just one component, or slice, as Spring Boot refers to it.

In this recipe, we will try to create a similar test to our previous PublisherRepository one, but without starting the entire container and initializing all the beans. Conveniently, Spring Boot provides us with the @DataJpaTest annotation, which we can put on our test class, and it will automatically configure...