Posts tagged with Spring
Using CSRF with Springfox
When using Springfox with CSRF, some issues may arise. In this tutorial I'll show you how you can solve these.
How to fix services registering as localhost on Eureka
If you used Eureka before, you may have noticed that services sometimes register as localhost in stead of the prefered servers hostname. In this tutorial I'll explain why that happens and how to fix it.
Testing code using Spring's WebClient
Since Spring 5, RestTemplate went into maintenance mode and WebClient became the way to go. In this tutorial I'll show how you can write tests for code using WebClient.
Deploying your Spring boot application to AWS with Terraform
In this tutorial I'll deploy a simple Spring boot application on AWS by using Terraform.
Do I need an interface with Spring boot?
In this blog post, we discover whether we have to use an interface when writing services with Spring boot.
Uploading files with Spring and GraphQL
In this tutorial I'll cover how you can upload files using Spring boot and GraphQL.
Mastering Spring boot Actuator
In this tutorial I'll cover why Spring boot actuator allows you to write proper production-grade Spring boot applications.
Securing your GraphQL API with Spring Security
In this tutorial, I'll show how you can use Spring Security with Spring boot and GraphQL.
Using EhCache 3 with Spring boot
Caching is a common operation when developing appllications. Spring provides an abstraction on top of all different caching libraries to make this even easier.
Writing dynamic queries with Spring Data JPA
With Spring Data, we can easily write queries usinng @Query. For more dynamic queries, we can use the Example and Specification API, which we'll explore here.