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 13
Securing Operations with Authorization Rules
Content Locked
Section 2
Applying Method-level Security Controls
How do I write complex authorization rules such as “only the owner can delete an image”? - Enable method-level security - Annotate the image creation method with a rule that only lets an image’s owner (or an ADMIN) delete it - Test this out with different users of varying roles