As we know we use Eureka server to monitor the status of our microservices. Eureka server provides a dashboard on which we can see every microservice status and other details…
Spring Cloud Security With JWT and MySQL
In this article we see about Spring Cloud Security. As we know security is the first concern when we work on any project, we don’t want to compromise with user…
Spring Boot Security with MySQL
As we know security is the first concern when we working on any web application. Spring Boot also provide this feature to prevent our user from unauthorised access. Some time…
Feign Client in Spring Boot MicroService
We know that Spring boot micro services application is divided into modules or separate application. And in many cases it is necessary that we have to call the one application…
RestTemplate in Spring Boot MicroService
As we know in microservice architecture we have many independent application and some time it is needed that one application communicates with other application to do some operation. So if…
Spring MicroService registration with Eureka Server
In Last Post ( Eureka Server ) we have seen that how to create a Eureka Server. Now we learn how to register our microservices on Eureka Server, We register…
Create Application in Spring Boot MicroService
We know that in Monolithic application complete Code is at one place, in MicroService we divide this big monolithic application in small small microservices. Suppose we create a separate application…
Eureka Server Spring Boot MicroService
Eureka Server is used to monitor all the application. With the help of Eureka Server we don’t need to worry about information like which application running on which port and…
Spring Boot profiles Example – JavaDream
In this post we will see spring boot profiles. We know that our application go through many phases like development, testing, production. So for them we have to do configuration…
log4j example in springboot – JavaDream
In this post we will see how to use log4j in java or spring boot . Logging is a most important feature that we use to detect if any error…