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…
How To Install Maven In Eclipse IDE Step By Step Tutorial
There are two ways you can install maven in your system, one is using command-line which is a bit difficult and second is installing maven in eclipse. In this post…
Spring Boot Hello World Example Step By Step Using Maven And Eclipse
In this tutorial, I will be sharing Spring Boot Hello World example step by step using Maven and Eclipse. To make it easy for you to follow this article, I…
Spring Boot Swagger 2 Example Using Springfox
In this tutorial Spring Boot Swagger 2 example using springfox, I will be sharing what is Swagger, how to configure Swagger in Spring Boot application using springfox, and advanced configuration…