Spring Framework is one of the most popular Java EE frameworks. In this article, we will learn about the following:
Spring framework architecture
Core components of Spring
Various projects under the spring framework umbrella.
I looked at the Google Trends chart for Spring Framework, Servlet, JSP, and JSF. It’s clear that Spring is far ahead from all other Java EE technologies.
Spring is one of the most popular frameworks for Java enterprise edition. Developers all over the world use Spring for developing reliable and high-quality applications. The spring framework was designed by Rod Johnson. Since then Spring has become an alternative technology in Java world for the EJB model. You can create different kinds of applications using the spring framework.
It is impossible to understand what is Spring Framework without understanding what is Dependency Injection and Inversion of Control. Dependency Injection also called as DI, is one of the types of Inversion of Control (IoC).
Inversion of Control - this is the principle of object-oriented programming, in which objects of the program do not depend on concrete implementations of other objects, but may have knowledge about their abstractions (interfaces) for later interaction.
Dependency Injection - is a composition of structural design patterns, in which for each function of the application there is one, a conditionally independent object (service) that can have the need to use other objects (dependencies) known to it by interfaces. Dependencies are transferred (implemented) to the service at the time of its creation. This is a situation where we introduce an element of one class into another. In practice, DI is implemented by passing parameters to the constructor or using setters. Libraries that implement this approach are also called IoC containers.
Aspect oriented programming - a programming paradigm that allows you to distinguish cross-through (functional) functionality in application. These functions, which span multiple application nodes, are called cross-cutting concerns and these cross-cutting notes are separated from the immediate business logic of the application. In OOP, the key unit is the class, while in AOP, the key element is the aspect. DI helps to separate application classes into separate modules, and AOP helps to separate cross-cutting concerns from the objects they affect.
Spring Framework is divided into a number of separate modules, which allows you to decide which ones to use in your application. The below image illustrates the most important modules of Spring Framework architecture. Let’s look into spring ecosystem modules one by one.
The Core container from Spring consists of four modules: SpEL , Context, Core, Beans. Description for these elements are as follows:
The SpEL module provides a powerful expression language for manipulating objects during execution.
Context is built on the basis of Beans and Core and allows you to access any object that is defined in the settings. The key element of the Context module is the ApplicationContext interface.
The Core module provides key parts of the framework including IoC and DI properties.
The Bean module is responsible for creating and managing Spring Beans - is application context structure unit.
The Data Access/Integration container consists of JDBC, ORM, OXM, JMS and the Transactions module.
JDBC provides an abstract layer of JDBC and eliminates the need for the developer to manually register the monotonous code associated with connecting to the database.
Spring ORM provides integration with popular ORMs such as Hibernate, JDO, which are implementations of JPA.
The OXM module is responsible for linking the Object / XML - XMLBeans, JAXB, etc.
The JMS (Java Messaging Service) module is responsible for creating, sending and receiving messages.
Transactions supports transaction management for classes that implement certain methods and POJOs.
Spring 5 brought massive update to Spring 4. Some of the important features of Spring 5 are:
Support for Java 8, Java 9, Java EE 7, Java EE 8, Servlet 4.0, Bean Validation 2.0, and JPA 2.2. I am happy to see that Spring is trying to catch up with latest versions of major technologies being used.
Improved Logging with new module - spring-jcl.
File operations are using NIO 2 streams, hence improved performance.
Support for Reactor 3.1 Flux and Mono as well as RxJava 1.3 and 2.1 as return values from Spring MVC controller methods.
Support for Kotlin, Project Lombok, JSON Binding API as an alternative to Jackson and GSON.
While we believe that this content benefits our community, we have not yet thoroughly reviewed it. If you have any suggestions for improvements, please let us know by clicking the “report an issue“ button at the bottom of the tutorial.
Follow Up Question/Clarity: My Question is based specifically on the comparison between JQuery5 and Spring5 with its 7 Features (or Spring4 with its 5 Feautres). jQuery5 has 11 Features that which I feel there are most powerful. I did proper investigative discovery not just counting.
Yes, I do agree with you. The Basics of C++ (OOPL/Object-Oriented Design/Model) and then followed by proper skill (relevant expertise) in the usage of JQuery Features, could help anyone in mastering any Framework. I’m still mummed why many people use Spring Framework than JQuery (DOM tree) Framework, even though JQuery demonstrates to be easier to use (user-friendly) with its powerful features and had been availabe on the Market maybe even prior to the Spring Framework’s release. Could you elaborate maybe if I missed the power of Spring Framework with its 5 Features that might make it so powerful??
Hello, Why is JPA included in the list of ORM tools in this article? JPA is a specification it is not a ORM tool/ framework.
- Deepthi
Follow Up Question/Clarity: My Question is based specifically on the comparison between JQuery5 and Spring5 with its 7 Features (or Spring4 with its 5 Feautres). jQuery5 has 11 Features that which I feel there are most powerful. I did proper investigative discovery not just counting.
- Alpheus Legoke Mokgalaka
Yes, I do agree with you. The Basics of C++ (OOPL/Object-Oriented Design/Model) and then followed by proper skill (relevant expertise) in the usage of JQuery Features, could help anyone in mastering any Framework. I’m still mummed why many people use Spring Framework than JQuery (DOM tree) Framework, even though JQuery demonstrates to be easier to use (user-friendly) with its powerful features and had been availabe on the Market maybe even prior to the Spring Framework’s release. Could you elaborate maybe if I missed the power of Spring Framework with its 5 Features that might make it so powerful??
- Alpheus Legoke Mokgalaka
Hi, You have great tutorials. But I do not see any tutorial on how to use an IDE to create and run a simple Spring tutorial. Is there one?
- JAYAMARUTHYRAMAN JAGANATHAN
Hello Please create a tutorial for Maven. thanks
- Sina
Hello is there any tutorial for SpEL THANKS
- Sameh
Number one Java learning platform.
- Yash