Posts

Showing posts from 2018

Spring Vs Spring-BOOT

My First Jig with spring & spring boot. For past many days, spring framework was on my mind. Then I heard  the jargon about spring boot as well. Basically spring framework is an advanced java framework that helps us in building enterprise projects. It helps us in maintaining various tasks which come in our path while working on Enterprise-level project dev. Such as: Building the app adding JARs adding dependencies,etc. Also spring framework can be integrated with others s.a. hibernate,etc. Then the question pops up: WHY DO WE NEED SPRING-BOOT framework? As the last name of the framework suggests, spring boot helps in BOOT-strapping (starting) our spring application so that it could be put to action asap. The word 'asap' here means to save ourselves from the boilerplate tasks that any developer must do while he is building a spring application (like project initialization, adding JARs, dependencies, hosting the web-application onto a Tomcat server, etc.) T