Spring Boot comes with a really easy way to manage spring applications with minimal setup involvement. Here I’ll explain how we can change the default port of the embedded tomcat…
Spring Boot
Angular Datatable with Pagination Using ag-Grid and REST API
In this article, I’ll explain how we can build a data table with angular using ag-Grid. Additionally, the application will consume third-party paginated REST API and load the data to…
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…
Spring Boot JWT Authentication using Spring Security
In this article, I’ll explain how we can implement a JWT (JSON Web Token) based authentication layer on Spring Boot CRUD API using Spring Security. Basically this JWT authentication layer…
Spring Boot REST API CRUD With DynamoDB Tutorial
In this article, I’m going to explain how we can use DynamoDB with a Spring Boot application with developing a REST API that covers CRUD operations. Here I’ll explain how…
Spring Boot REST API Using Spring Data MongoDB Tutorial
In this article, I’m going to explain how to use the MongoDB database with a Spring Boot application using a practical scenario. Additionally, I’m going to develop a REST API…
Guide to use Lombok In Spring Boot
Project Lombok, is one of the coolest java libraries capable of minimizing your code. This is a plugin that we could configure with your editor and build tools. Then you would not have…
Spring Boot REST API Using JPA, Hibernate, MySQL Tutorial
In this article, I’m going to explain how we can build a REST API using JPA, Hibernate, and MySQL in Spring Boot. Here JPA (Java Persistence API) is used to…
Exception Handling Spring Boot REST API
Exception handling is one of the core concepts which is really necessary when we build an application using spring boot. So in REST API development, it carries a bigger role.…
Database Migration Using Flyway in Spring Boot
Flyway is one of the best open-source database migration tools. Flyway supports writing migrations in SQL and Java (for advanced data transformations or dealing with LOB). Here we are discussing…