Posts

Showing posts from June, 2020

System Requirements For Spring Boot

System Requirements for Spring Boot Spring Boot 2.0 release requires Java version 8 and above Spring Framework 5.0 + Build Tool Apache Maven 3.2+ Gradle 4.4+ Servlet Containers Tomcat 9.0  Servlet Version 4.0 Jetty 9.4  Servlet Version 3.1 Undertow 2.0 Servlet Version 4.0 Note:Although you can use Spring Boot with Java 6 and 7,we generally recommend Java 8 if it all possible. You can also deploy Spring Boot application to any Servlet 3.0+ versions.   So these are the requirements needed for Spring Boot.

Spring VS Spring Boot

Image
Spring Spring framework is one of the most popular used for application development using Java and its main feature is Dependency injection and Inversion of control(IOC),Here we can develop loosely coupled application. Spring Boot Spring Boot is  a module of Spring Framework and it avoids lot of Boilerplate code. Used to create stand-alone  applications with minimal  Spring configuration which includes Embed Tomcat,Jetty or Undertow(no need to deploy war files). Spring vs Spring Boot The Primary feature of Spring Framework is Dependency injection or Inversion of Control(IOC)  The Primary feature of Spring Boot is Auto-configuration .Automatically configures the classes based on the Requirements.  The Developer writes lot of code (Boiler code) to do minimal task. Its reduce the boiler code.  Here we can develop loosely couple applications and helps make to things simpler. Here we can create Stand-alone applications with minimum configuration. We need to setu...

Spring Boot

Spring Boot Spring boot is one  of most  trendiest technologies used to build web applications in java and its a Spring module provides rapid Application Development feature to the Spring Framework. Spring boot makes it easy to create Spring powered,production grade applications. Takes an opinionated view of Spring platform. Used to create stand-alone Java applications. Features of Spring Boot Spring CLI(Command Line Interface)           Spring Boot CLI allows you to Groovy for writing Spring Boot application and avoids boilerplate code. Spring Initializer           This basically a web application,which can create an internal project structure for you. Spring Actuator           Spring Actuator helps us to monitor and manage the Spring Boot application. Starter Dependency            Starter Dependency is the parent POM providing dependency and plugin for Spring Boot based a...