One of the most common tasks is to consume RESTful web services in Java, in this post I will explain a design pattern using Jersey client. Step 1 : Configuration The project will include the dependencies described in the following pom.xml, as you can see there we have […]
One of the most common problems while we are developing applications is to have just one code and execute it in different environments. In this post we will explain how to support multiple environments using Spring boot step by step, to do it we will start with the […]
In this post we will explain how to access to a database by using Spring boot + Spring JDBC step by step. For this we will use the project Spring Boot + REST Jersey Part 1 as base. Step 1 : Configure the required dependencies The first step will be […]
One of the most important points while we are developing a REST api is the error handling, in this post we will explain how to implement it by using Spring boot + Jersey. Te example that we are going to use as base is Spring Boot + REST Jersey […]
In the previous post we explained how to use HATEOAS step by step using Spring boot Spring Boot + REST Jersey (Adding Spring HATEOAS and MapStruct) Part 3, and we are going to use this project as base to implement Spring Security with basic authentication. Step 1: Configuration Spring […]
In the previous examples we explained the configuration of Spring Boot + REST Jersey Part 1 and Spring Boot + REST Jersey (Adding Spring data) Part 2. Now we are going to take the previous examples as base to show how HATEOAS works by using Spring Boot + Jersey. Step 1: […]
In this post, I will explain in an easy way how to configure and use Spring data with Spring boot. In order to do it we will use a previous example Spring Boot + REST Jersey Part 1. Step 1 (Including maven dependencies) Spring boot generated starter dependencies, this […]