skip to Main Content

I am new learner for Spring Boot. I have refer some YouTube channel for learning myself. But in Udemy course only there has using Docker itself. No YouTube channel using Docker.
Can I able to create a Spring Boot application without using Docker?
Is Docker important to develop an Application in Spring Boot?

2

Answers


  1. The answer is yes, you can use spring without docker. To do this, just install java on your computer.

    Usually, docker is used in order to be able to work with other resources, such as a database, rabbitmq, etc.

    Docker makes it easy for you to interact with external resources, but it’s not required.

    Login or Signup to reply.
  2. Docker is another concept. You can learn spring boot independently. The concept of containerization brings in the docker.

    Docker is basically an application that facilitates containerization. In order to learn spring boot you don’t need docker. Docker can be used with any application, you will have to create containers and then create/use applications inside the docker.

    Learn spring boot first, have some grip on it and then proceed towards the concept of containerization.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search