Hello readers, Here I’m starting my new article series on building Microservices with Spring Boot, and I’m going to write this as a free course on practical microservices building using Spring Boot. There are so many examples on the internet…
Spring Boot
Here I’m explaining Spring Boot based developments using practical usages with best practices.
Multiple Datasources With Spring Boot Data JPA
Hello readers, In this article I’m going to explain how we can use multiple data sources in Spring Boot application which uses Spring Data JPA with practical usage. Technologies going to use, Java 1.8 Spring Boot: 2.3.4.RELEASE Spring Data JPA…
How To Handle Multiple Message Properties In Spring Boot
In this tutorial, I’m going to explain how we can use multiple message properties files in a spring boot application. We can use this approach when we need to differentiate message properties into multiple files. Just think you have a…
Docker Compose For Spring Boot with MongoDB
In this article, I’m going to explain how to use docker compose on spring boot application with MongoDB. Technology stack which going to use in this tutorial, Spring Boot 2.4.1-RELEASE Spring Data MongoDB MongoDB – 4.4.3 Lombok Docker – version…
Docker Compose For Spring Boot with MariaDB
In this article, I’ll explain how we can set up a deployment using docker-compose for a Spring Boot application which uses a MariaDB database. MariaDB is a community developed fork of the MySQL relational database management system, which is free…
Docker Compose For Spring Boot with MySQL
In this article, I’ll explain how we can set up a deployment using docker-compose for a Spring Boot application which uses a MySQL database. Technology stack which going to use in this tutorial, Spring Boot 2.4.1-RELEASE Spring Data JPA MySQL…
Docker Compose For Spring Boot with PostgreSQL
In this article, I’ll explain how we can set up a deployment using docker-compose for a Spring Boot application which uses a PostgreSQL database. Technology stack which going to use in this tutorial, Spring Boot 2.4.1-RELEASE Spring Data JPA PostgreSQL…
How to Dockerize Spring Boot Application
In this article, I’ll explain how to Dockerize Spring Boot Application with practical usage. Technologies going to use, Spring Boot 2.4.1 Actuator Lombok Docker version 19.03.14, build 5eb3275d40 Main topics inside this article, Up and Running Simple API We have…
How To Change Default Port in Spring Boot
Spring Boot comes with a really easy way to manage spring application with minimal setup involvement. Here I’ll explain how we can change the default port of embedded tomcat server (8080) to any port you prefer in spring boot. Topics…
Spring Boot Pagination, Sorting and Filtering
In this article, I’m going to explain how to implement Spring Boot project with pagination enabled API plus sorting and filtering. Here I’m using Pageable in Spring Data Core, Spring Data JPA with MySQL based database in this practical application development…