What are Microservices and setting up Config Server
Microservice Architecture is a Service-oriented Architecture. In Java Spring Boot Term, Spring Boot Application acts as Microservice and it has its own endpoint URL and port number. It is totally…
Microservice Architecture is a Service-oriented Architecture. In Java Spring Boot Term, Spring Boot Application acts as Microservice and it has its own endpoint URL and port number. It is totally…
Mockito.mock() Vs @Mock If you want to mock a bean, you can use either Mockito.mock() or @Mock Annotation. Both giving the same result. There are slight advantages of @Mock Annotation…
Welcome back friends in this video we will going to talk about Spring Boot Basic. What is Basic Authentication in Rest API? This is the easiest and straight forward authentication…
Welcome back, friends! We have learned how to enable the Spring Boot default Authorization Previous Story. Now we will be going to learn how to enable Spring Boot Authorization using…
Welcome back friends, Do you know spring boot is by default an unprotected application. i.e. if you develop any Webservice endpoint, it is by default accessible by everybody in the…
What is MVC? MVC is a design pattern and it is not technology. Using any technology we can implement MVC based Web application. Using MVC we are separating our web…
The client-side HTML page fields are mapped with back end Java bean class. This is called as Form Backing Bean Object For Example: Take the Facebook login page as an…
In this article, we will try to understand about @SprinbBootApplication and What is the Responsibility of SpringBootApplication Annotation. If anyone asks a question about this, simply you can say that…
The general definition of Feign client is It provides abstract over the Rest based calls. It is a declarative Web service client. What is the meaning of the above definitions?…
Lombok is a Java library widely used in most Java projects. The purpose of Lombok is we don’t have to write manual setter/getter and Constructor with argument/without argument. You can…