Monday, August 10, 2020

Spring Introduction

Spring is a JAVA framework to provide the "Plumbing" for enterprise applications, So that teams can focus on business logic

Spring is the most popular application development framework.

Spring is Open Source

Key Features :

  • Core technologies: dependency injection, events, resources, i18n, validation, data binding, type conversion, SpEL, AOP.

  • Testing: mock objects, TestContext framework, Spring MVC Test, WebTestClient.

  • Data Access: transactions, DAO support, JDBC, ORM, Marshalling XML.






  • Different modules of spring framework:
    - Core Module
    - Bean Module
    - Context Module
    - Expression Language Module
    - JDBC Module
    - ORM Module
    - Web Module
    - JMS Module
    - Transaction Module

No comments:

Post a Comment

Spring - AutoWiring

Spring automatically resolves the dependencies between the collaborating beans by inspecting the contents of the BeanFactory. This is called...