Book Image

Learning Spring Boot [Video]

By : Greg L. Turnquist
Book Image

Learning Spring Boot [Video]

By: Greg L. Turnquist

Overview of this book

<p>Learning Spring Boot will help developers, beginner and seasoned, learn how to build powerful apps fast. We’ll introduce core pieces of Spring Boot and show how easy it is to focus on building functionality without getting hung up on unnecessary infrastructure and tedious low level APIs. All examples are built using the Spring Initializr site and a modern IDE.</p> <h1>Style and Approach</h1> <p>This video course leads you through an example applications which you can use as a scaffold for your own projects going forward. Each section works through a concept with real-world implementation detail that shows you how to get the job done in a practical, engaging problem domain.</p>
Table of Contents (13 chapters)
Free Chapter
1
Buiding a Spring Boot app from scratch with Spring Initializr
13
Securing Operations with Authorization Rules
Chapter 3
Creating a File Upload Controller
Content Locked
Section 1
Creating a Service to Store Images
We need to find, store, and delete images on disk and in the database. These operations must be made available as web operations. - Create a service focused on interacting with the disk store as well as the database - Create a Spring MVC controller to field web requests, delegating to the service - Verify this interface using the command-line tool cURL