In previous article we learned about creating a new Spring boot application using Spring Initializr. In this article we will learn how to create REST controller in our application. Step 1: Open the application which we have created in our previous article. Follow...
In this article we will learn how to create a Spring boot application using Spring Initializr. For this you need to have: Maven 3.0+ is as your build tool.Eclipse IDE (You can use any)JDK 1.8+ Step 1: Go to Spring Initializr website https://start.spring.io Step...
docker-featured-image

What is Docker?

0
Docker is a tool designed to make it easier to create, deploy, and run applications by using containers. A Docker container image is a lightweight, standalone, executable package of software that includes everything needed to run an application. The image can contain...
"MICROSERVICES IS A SOFTWARE DEVELOPMENT TECHNIQUE THAT ARRANGES AN APPLICATION AS A COLLECTION OF LOOSELY COUPLED SERVICES" Robert C. Martin coined the term single responsibility principle. It states “gather together those things that change for the same reason, and separate...
In previous article we learned how to Write your first Java program. A Java class file is a file that contains Java bytecode and having .class extension. A Java class file is created by a Java compiler from .java files after successful compilation. If a .java file...
In our previous post we learned "What is Java". In this tutorial, you will learn how to write "Hello World" in Java. To run this program on your computer you need to install Java on your machine. To install visit java.com. Here...
The developer console provides a streamlined experience to help you create, manage, and publish your skills. To create a develop account follow the below steps: Step 1: Visit https://developer.amazon.com/alexa/console/ask and a sign in page will open. If you don't have an...

What is Java?

0
It is an object-oriented language similar to C++ with advanced features. Java is free to access and platform independent. It is intended to let developers “write once, run anywhere” (WORA), meaning that compiled Java code can run on all platforms that support...