Skip to Main Content
Spring Boot 2.0 Cookbook - Second Edition
book

Spring Boot 2.0 Cookbook - Second Edition

by Alex Antonov
February 2018
Intermediate to advanced content levelIntermediate to advanced
286 pages
7h 20m
English
Packt Publishing
Content preview from Spring Boot 2.0 Cookbook - Second Edition

How it works...

Clicking on the Generate Project alt + button will download the bookpub.zip archive, which we will extract from our working directory. In the newly created bookpub directory, we will see a build.gradle file that defines our build. It already comes preconfigured with the right version of a Spring Boot plugin and libraries, and even includes the extra starters, which we have chosen. The following is the code of the build.gradle file:

dependencies { 
  compile("org.springframework.boot:spring-boot-starter-data-jpa") 
  compile("org.springframework.boot:spring-boot-starter-jdbc") 
  runtime("com.h2database:h2") 
  testCompile("org.springframework.boot:spring-boot-starter-test")  
} 

We have selected the following starters:

  • org.springframework.boot:spring-boot-starter-data-jpa ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Spring 5.0 Cookbook

Spring 5.0 Cookbook

Sherwin John Calleja Tragura
Spring Boot 2.0 Projects

Spring Boot 2.0 Projects

Mohamed Shazin Sadakath
Java Hibernate Cookbook

Java Hibernate Cookbook

Yogesh Prajapati, Vishal Ranapariya

Publisher Resources

ISBN: 9781787129825Supplemental Content