In this series of articles, we will introduce Spring Security . First, let’s discuss Spring Security’s architecture, and introduce how to use Spring Security to various scenarios. I believe after reading the entire series, you will have a fairly in-depth understanding of Spring Security.
You May Also Like
How to Backup and Restore MySQL Databases in Spring Boot
- By
Wayne
- 10/09/2020
Backend engineers or site reliability engineers need to backup databases frequently. Apart from manual backup, we can write schedulers to backup databases periodically. Let’s see how to backup and restore databases in a Spring Boot application.
Sending Push Notifications Using FCM in Spring Boot
- By
Wayne
- 18/05/2021
Firebase Cloud Messaging (FCM) allows us to send messages to Android, iOS, or web applications, also known as push notifications. This article will introduce how to send push notifications via FCM in Spring Boot.
Downloading Images from Spring Boot REST APIs
- By
Wayne
- 10/09/2020
Spring Boot applications often need to provide some REST APIs to allow front-end applications to download images. One is that when open the image URL is opened with a browser, the image will be downloaded into a file. The other is that the browser will directly display the image.
Downloading Files from Spring Boot REST APIs
- By
Wayne
- 10/09/2020
When developing back-end programs, we often need to implement REST APIs so that the front-end can download files. It is easy to implement file downloading REST APIs with Spring Boot StreamingResponseBody.
Documenting Spring REST APIs Using Stringdoc-OpenAPI
- By
Wayne
- 21/09/2020
Springdoc integrates OpenAPI specification and Spring Boot. The difference between them is that Springdoc uses Swagger 3, while SpringFox uses Swagger 2.
How to Use @Value in Spring Boot with Kotlin
- By
Wayne
- 27/09/2020
If your project is written in Java, you can use @Value(“${name}”) to get the value of my.food. However, if it is written in Kotllin, the above method will not work.