Spring Boot Microservices – Setting up Swagger with Spring Boot Application
In the previous post Handling Validations in Spring Boot Application, we added validations to our application. With that, we brought it quite close to a production-level application. However, one of…
Spring Boot Microservices – Handling Validations in Spring Boot Application
We already looked at exception handling in a Spring Boot application. The other side of the coin is to validate the incoming data to our application. Lack of validation can…
Spring Boot Microservices – Exception Handling in a Spring Boot application
Exception Handling is one of the most important aspects of a production-level Spring Boot Microservice. In the last post Creating REST API using Spring Boot, we had added the functionality…
Spring Boot Microservices – Creating REST API using Spring Boot
In the post Exposing repositories as REST resources, we exposed a repository as a RESTful interface using Spring Data REST. However, that’s not the conventional way of creating REST API…
Spring Boot Microservices – Exposing repositories as REST resources
For any application, it is an important functionality to be able to provide its data to the consumer. REST APIs are one of the most popular ways to do so.…
Spring Boot Microservices – Setting up Spring Boot H2 Database
Spring Boot H2 Database is an extremely useful tool in the arsenal of any developer working on a Spring Boot application. The Spring Boot H2 database can be embedded within…
Spring Boot Microservices – Initializr to create Spring Boot Application
Spring Boot startup for an application is an interesting topic to explore. It will help you understand how a Spring Boot Application downloaded from the Spring Boot Initializr actually works.…
Microservices Architecture – Every things you must know
Microservices Architecture has captured the imagination of the software industry. Unless you’ve been living under a rock, you must have definitely heard or read about microservices. All the way from…
Spring Boot Fastest Production Ready Microservices
Spring Boot Microservices are extremely easy to build. As an extremely popular microservices framework, Spring Boot allows Rapid Application Development.Using Spring Boot, you can build production-ready Java microservices in less…
RESTful Web Services : Simple Tutorial For Beginners
If you are familiar with modern web development then you will have encounter the terms like REST and API. If you have worked with APIs or heard of these terms…