Spring Boot Build a REST API With Spring Boot and MySQL In this post, we will see how to build a REST API using Java and Spring Boot connected to a MySQL database.
Spring Boot Make HTTP requests in a Java application using Spring RestTemplate In this post, we will see how to consume an external service from a Spring Boot application using the methods of the RestTemplate class.
Spring Boot Data Caching in a Spring Boot application with Redis In this post, we will see how to use Redis to cache data retrieved from a MySQL database through a Spring Boot Application. We will also see how to invalidate the cached data.
Spring Boot Deploy a Spring Boot application with Docker and Nginx Reverse Proxy In this post, we will see how to deploy a Spring Boot application packaged with Docker, configure a reverse proxy with Nginx, and finally secure it with Lets Encrypt.
Spring Boot Deploy a Spring Boot application JAR file with Nginx reverse proxy In this post, we will see how to deploy a Spring Boot application packaged as a JAR file on a server, configure a reverse proxy with Nginx, and finally secure it with Lets Encrypt.
Spring Boot Build a Web application with Spring Boot and Tailwind CSS In this post, we will see how to build a web application with Spring Boot, Thymeleaf, and Tailwind CSS to provide a modern design to our server-side application.
Spring Boot Create a Spring Boot project from IntelliJ In this post, we will see how to use IntelliJ to create and run a Spring Boot project with Maven dependencies.
Java Deploy a Java Lambda Function and API Gateway with AWS CDK In this post, we will see how to deploy an API Gateway and a Lambda function written in Java using the AWS CDK.
Spring Boot Handle Many-To-Many relationship with JPA in a Spring Boot application - part 2 In this post, we will see how to handle Many-to-Many relationships that have additional information. We will use JPA, Hibernate, in a Spring boot project.
Spring Boot Handle Many-to-Many relationship with JPA in a Spring Boot application - part 1 In this post, we will see how to create many-to-many relationships between entities using JPA and Hibernate ins a Spring Boot project.
Spring Boot Handle database migrations in a Spring Boot application with Flyway In this tutorial, we will see how to use Flyway in a SpringBoot application to create and execute database migrations.
Java Create a Java project using an external dependency with Maven In this tutorial, we will see how the create a Java project using Maven then, add an external dependency, finally package the JAR file and execute it.
Spring Boot Write custom validator for request body in Spring Boot In this post, we will see how to create a custom validator using Hibernate Validator to validate complex inputs in a Spring Boot Application.
Spring Boot Validate Request Body and Parameter in Spring Boot In this tutorial, we will use Hibernate Validator to validate the request body and URL parameters sent to a Spring Boot application.