Spring Framework

From Wikipedia, the free encyclopedia
(Redirected from Spring AOP)
Jump to navigation Jump to search

Script error: No such module "about". Template:Short description Script error: No such module "Infobox". Script error: No such module "Check for unknown parameters".Script error: No such module "Check for conflicting parameters". The Spring Framework is an application framework and inversion of control container for the Java platform.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". The framework's core features can be used by any Java application, but there are extensions for building web applications on top of the Java EE (Enterprise Edition) platform. The framework does not impose any specific programming model.Script error: No such module "Unsubst".. The framework has become popular in the Java community as an addition to the Enterprise JavaBeans (EJB) model.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". The Spring Framework is free and open source software.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".Template:RpScript error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".

Version history

Version Date
0.9 2003
1.0 March 24, 2004
2.0 2006
3.0 2009
4.0 2013
5.0 2017
6.0 November 22, 2022
6.1 November 16, 2023
6.2 November 14, 2024

The first version was written by Rod Johnson, who released the framework with the publication of his book Expert One-on-One J2EE Design and Development in October 2002. The framework was first released under the Apache 2.0 license in June 2003. The first production release, 1.0, was released in March 2004.[1] The Spring 1.2.6 framework won a Jolt productivity award and a JAX Innovation Award in 2006.[2][3] Spring 2.0 was released in October 2006, Spring 2.5 in November 2007, Spring 3.0 in December 2009, Spring 3.1 in December 2011, and Spring 3.2.5 in November 2013.[4] Spring Framework 4.0 was released in December 2013.[5] Notable improvements in Spring 4.0 included support for Java SE (Standard Edition) 8, Groovy 2,Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". some aspects of Java EE 7, and WebSocket.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".

Spring Framework 4.2.0 was released on 31 July 2015 and was immediately upgraded to version 4.2.1, which was released on 01 Sept 2015.[6] It is "compatible with Java 6, 7 and 8, with a focus on core refinements and modern web capabilities".[7]

Spring Framework 4.3 has been released on 10 June 2016 and was supported until 2020.[8] It was announced to "be the final generation within the general Spring 4 system requirements (Java 6+, Servlet 2.5+), [...]".[7]

Spring 5 is announced to be built upon Reactive Streams compatible Reactor Core.[9]Template:Obsolete source

Spring Framework 6.0 has been released on 16 November 2022 and came with a Java 17+ baseline and a move to Jakarta EE 9+ (in the jakarta namespace), with a focus on the recently released Jakarta EE 10 APIs such as Servlet 6.0 and JPA 3.1.[10]

Modules

The Spring Framework includes several modules that provide a range of services:

  • Spring Core Container: this is the base module of SpringScript error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". and provides spring containers (BeanFactory and ApplicationContext).[11]Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". In this context, spring-core is the artifactScript error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". found in the core moduleScript error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". belonging to the org.springframework group.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". The spring-core artifact consists of the IoC container, as well as the utility classesScript error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". used throughout the application.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".
  • Aspect-oriented programming: enables implementing cross-cutting concerns.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". The spring-aop is an artifact for the AOP framework.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".
  • Authentication and authorization: configurable security processes that support a range of standards, protocols, tools and practices via the Spring Security sub-project (formerly Acegi Security System for Spring).Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".
  • Convention over configuration: a rapid application development solution for Spring-based enterprise applications is offered in the Spring Roo module.
  • Data access: working with relational database management systems on the Java platform using Java Database Connectivity (JDBC)Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". and object-relational mapping tools and with NoSQLScript error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". databases. The spring-jdbc is an artifact found in the JDBC module which supports JDBC access by including datasource setup classes.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".
  • Inversion of control container: configuration of application components and lifecycle management of Java objects, done mainly via dependency injection.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".
  • Messaging: declarative registration of message listener objects for transparent message-consumption from message queues via Java Message Service (JMS), improvement of message sending over standard JMS APIs.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".
  • Model–view–controller: an HTTP- and servlet-based framework providing hooks for extension and customization for web applications and RESTful (representational state transfer) Web services.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".
  • Remote access framework: declarative remote procedure call (RPC)-styleScript error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". marshalling of Java objects over networks supporting Java remote method invocation (RMI),Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". CORBA (Common Object Request Broker Architecture) and HTTP-based protocols including Web services such as SOAP (Simple Object Access Protocol).Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".
  • Transaction management: unifies several transaction management APIs and coordinates transactions for Java objects.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".
  • Remote management: declarative exposure and management of Java objects for local or remote configuration via Java Management Extensions (JMX).Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".
  • Testing: support classes for writing unit testsScript error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". and integration tests.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".
  • WebFlux support: support for using reactive runtimes or web servers such as UnderTow and Netty.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".
  • Web Socket support: Support for communicating using the WebSocket protocol. The artifact for this module is spring-websocket.
  • XML support: support for object-toXML mapping.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". Libraries such as Jakarta XML Binding(JAXB) and XStream are supported.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". The artifact for this module is spring-oxm.

Spring modules are packaged as JAR files.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". These artifacts can be accessed via the Maven Central Repository using MavenScript error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". or Gradle.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".

Inversion of control container

The inversion of control (IoC) container is the core container in the Spring Framework.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". It provides a consistent means of configuring and managing Java objectsScript error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".Template:Rp using reflection.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". The container is responsible for managing object lifecycles of specific objects:Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".Template:Rp creating these objects,Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". calling their initialization methods,Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". and configuring these objects by wiring them together.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".

In many cases, one need not use the container when using other parts of the Spring Framework, although using it will likely make an application easier to configure and customize. The Spring container provides a consistent mechanism to configure applicationsScript error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".Template:Rp and integrates with almost all Java environments, from small-scale applications to large enterprise applications.

The programmer does not directly create an object, but describes how it should be created, by defining it in the Spring configuration file. Similarly, services and components are not called directly; instead a Spring configuration file defines which services and components must be called. This IoC is intended to increase the ease of maintenance and testing.

Creating and managing beans

Objects created by the container are called managed objects or beans.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". The container can be configured by loading XML (Extensible Markup Language) filesScript error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".Template:Rp or detecting specific Java annotations on configuration classes. These data sources contain the bean definitions that provide the information required to create the beans.

The @Configuration is a Spring-specific annotation that marks a class as the configuration class. The configuration class provides the beans to the Spring ApplicationContext.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". Each of the methods in the Spring configuration class is configured with the @Bean annotation. The ApplicationContext interface will then return the objects configured with the @Bean annotation as beans. The advantage of Java-based configuration over XML-based configuration is better type safety and refactorability.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".

Types of Inversion of Control

There are several types of Inversion of Control. Dependency injection and dependency lookup are examples of Inversion of Control.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". Objects can be obtained by means of either dependency lookup or dependency injection.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".Template:Rp[12]

Dependency Injection

Template:Main article Dependency injection is a pattern where the container passes objectsScript error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".Template:Rp by name to other objects, via either constructors,Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".Template:Rp properties, or factory methods. There are several ways to implement dependency injection: constructor-based dependency injection, setter-based dependency injection and field-based dependency injection.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".

Dependency Lookup

Dependency lookup is a pattern where a caller asks the container object for an object with a specific name or of a specific type.

Autowiring

The Spring framework has a feature known as autowiring, which uses the Spring container to automatically satisfy the dependencies specified in the JavaBean properties to objects of the appropriate type in the current factory.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". This can only occur if there is only one object with the appropriate type.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".

There are several annotations that can be used for autowiring POJOs, including the Spring-specific annotation @Autowire (as well as several other Spring-specific annotations that help resolve autowire ambiguity such as the @Qualifier or @Primary annotations),Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". and the standard Java annotations @Resource and @Inject.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".

The @Qualifier annotation can be used on a class that defines a bean to inform Spring to prioritize the bean creation when autowiring it by name.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".

The @Primary annotation can be used on a class that defines a bean to inform Spring to prioritize the bean creation when autowiring it by type.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".

The @Resource annotation is an annotation that conforms to JSR 250, or Common Annotations for the Java Platform, and is used for autowiring references to POJOs by name.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". The @Inject annotation is an annotation that conforms to JSR 300, or Standard Annotations for injection, and is used for autowiring references to POJOs by type.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".

Aspect-oriented programming framework

Template:Main article The Spring Framework has its own Aspect-oriented programming (AOP) framework that modularizes cross-cutting concerns in aspects.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". The motivation for creating a separate AOP framework is to provide basic AOP features without too much complexity in either design, implementation, or configuration. The Spring AOP framework takes full advantage of the Spring container.

The Spring AOP framework is proxy pattern-based.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". It is configured at run time.Script error: No such module "Unsubst". This removes the need for a compilation step or load-time weaving.Script error: No such module "Unsubst". On the other hand, interception only allows for public method-execution on existing objects at a join point.Script error: No such module "Unsubst".

Compared to the AspectJ framework, Spring AOP is less powerful, but also less complicated.Script error: No such module "Unsubst". Spring 1.2 includes support to configure AspectJ aspects in the container. Spring 2.0 added more integration with AspectJ; for example, the pointcut language is reused and can be mixed with Spring AOP-based aspects.Script error: No such module "Unsubst". Further, Spring 2.0 added a Spring Aspects library that uses AspectJ to offer common Spring features such as declarative transaction managementScript error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". and dependency injection via AspectJ compile-time or load-time weaving.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". SpringSource uses AspectJ AOP in other Spring projects such as Spring Roo and Spring Insight, with Spring Security offering an AspectJ-based aspect library.Script error: No such module "Unsubst".

Spring AOP has been designed to work with cross-cutting concerns inside the Spring Framework.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".Template:Rp Any object which is created and configured by the container can be enriched using Spring AOP.

The Spring Framework uses Spring AOP internally for transaction management, security, remote access, and JMX.[13]

Since version 2.0 of the framework, Spring provides two approaches to the AOP configuration:

<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:mvc="http://www.springframework.org/schema/mvc" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:aop="http://www.springframework.org/schema/aop" 
    xmlns:context="http://www.springframework.org/schema/context"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context
        http://www.springframework.org/schema/context/spring-context.xsd
        http://www.springframework.org/schema/mvc
        http://www.springframework.org/schema/mvc/spring-mvc.xsd
        http://www.springframework.org/schema/aop 
        http://www.springframework.org/schema/aop/spring-aop.xsd">

The Spring team decided not to introduce new AOP-related terminology. Therefore, in the Spring reference documentation and API, terms such as aspect, join point, advice, pointcut, introduction, target object (advised object), AOP proxy, and weaving all have the same meaningsScript error: No such module "Unsubst". as in most other AOP frameworks (particularly AspectJ).

Data access framework

Spring's data access framework addresses common difficulties developers face when working with databases in applications. Support is provided for all popular data access frameworks in Java: JDBC, iBatis/MyBatis,Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". Hibernate,Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". Java Data Objects (JDO, discontinued since 5.x),Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". Jakarta Persistence API (JPA),Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". Oracle TopLink, Apache OJB, and Apache Cayenne, among others.

For all of these supported frameworks, Spring provides these features

  • Resource management – automatically acquiring and releasing database resources
  • Exception handling – translating data access related exception to a Spring data access hierarchyScript error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".
  • Transaction participation – transparent participation in ongoing transactionsScript error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".Template:Rp
  • Resource unwrapping – retrieving database objects from connection pool wrappers
  • Abstraction for binary large object (BLOB) and character large object (CLOB) handling

All these features become available when using template classes provided by Spring for each supported framework.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". Critics have said these template classes are intrusive and offer no advantage over using (for example) the Hibernate API directly.[16]Script error: No such module "Unsubst". In response, the Spring developers have made it possible to use the Hibernate and JPA APIs directly. This however requires transparent transaction management, as application code no longer assumes the responsibility to obtain and close database resources,Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". and does not support exception translation.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".

Together with Spring's transaction management, its data access framework offers a flexible abstraction for working with data access frameworks. The Spring Framework doesn't offer a common data access API; instead, the full power of the supported APIs is kept intact.Script error: No such module "Unsubst". The Spring Framework is the only framework available in Java that offers managed data access environments outside of an application server or container.[17]Template:Better source needed

While using Spring for transaction management with Hibernate, the following beans may have to be configured:

  • A Datasource like com.mchange.v2.c3p0.ComboPooledDataSource or org.apache.commons.dbcp.BasicDataSourceScript error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".
  • A SessionFactory like org.springframework.orm.hibernate3.LocalSessionFactoryBean with a DataSource attributeScript error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".Template:Rp
  • A HibernatePropertiesScript error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".Template:Rp like org.springframework.beans.factory.config.PropertiesFactoryBean
  • A TransactionManager like org.springframework.orm.hibernate3.HibernateTransactionManager with a SessionFactory attributeScript error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".

Other points of configuration include:

Transaction management

Spring's transaction management framework brings an abstraction mechanism to the Java platform.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". Its abstraction is capable of:

  • working with local and global transactionsScript error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".Template:Rp (local transaction does not require an application server)
  • working with nested transactionsScript error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".
  • working with savepointsScript error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".
  • working in almost all environments of the Java platform

In comparison, Java Transaction API (JTA) only supports nested transactions and global transactions, and requires an application server (and in some cases, deployment of applications in an application server).

The Spring Framework ships a PlatformTransactionManagerScript error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". for a number of transaction management strategies:

  • Transactions managed on a JDBC ConnectionScript error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".
  • Transactions managed on Object-relational mapping Units of WorkScript error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".
  • Transactions managed via the JTAScript error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".JtaTransactionManagerScript error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".Template:Rp and UserTransactionScript error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".Template:Rp
  • Transactions managed on other resources, like object databases

Next to this abstraction mechanism the framework provides two ways of adding transaction management to applications:

  • Procedurally, by using Spring's TransactionTemplateScript error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".
  • Declaratively, by using metadata like XML or Java annotations (@Transactional,Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". etc.)

Together with Spring's data access framework – which integrates the transaction management framework – it is possible to set up a transactional system through configuration without having to rely on JTA or EJB. The transactional framework also integrates with messagingScript error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". and cachingScript error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". engines.

Model–view–controller framework

File:Spring5JuergenHoeller2.jpg
Spring MVC/Web Reactive presentation given by Jürgen Höller

The Spring Framework features its own model–view–controller (MVC) web application framework,Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". which was not originally planned. The Spring developers decided to write their own Web framework as a reaction to what they perceived as the poor design of the (then) popular Jakarta Struts Web framework,[18]Script error: No such module "Unsubst". as well as deficiencies in other available frameworks. In particular, they felt there was insufficient separation between the presentation and request handling layers, and between the request handling layer and the model.[19]

Like Struts, Spring MVC is a request-based framework.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".Template:Rp The framework defines strategy interfacesScript error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".Template:Rp for all of the responsibilities that must be handled by a modern request-based framework. The goal of each interface is to be simple and clear so that it's easy for Spring MVC users to write their own implementations, if they so choose. MVC paves the way for cleaner front end code. All interfaces are tightly coupled to the Servlet API. This tight coupling to the Servlet API is seen by some as a failure on the part of the Spring developers to offer a high level of abstraction for Web-based applications Script error: No such module "Unsubst".. However, this coupling ensures that the features of the Servlet API remain available to developers while offering a high abstraction framework to ease working with it.

The DispatcherServlet class is the front controller[20] of the framework and is responsible for delegating control to the various interfaces during the execution phases of an HTTP request.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".

The most important interfaces defined by Spring MVC, and their responsibilities, are listed below:Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".

  • Controller: comes between Model and View to manage incoming requests and redirect to proper response.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". Controller will map the http request to corresponding methods.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". It acts as a gate that directs the incoming information. It switches between going into Model or View.
  • HandlerAdapter: responsible for execution of objects that handle incoming requests.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".
  • HandlerInterceptor: responsible for intercepting incoming requests.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". Comparable, but not equal to Servlet filtersScript error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".Template:Rp (use is optionalScript error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".Template:Rp and not controlled by DispatcherServlet).
  • HandlerMapping: responsible for selecting objects that handle incoming requests (handlers) based on any attribute or condition internal or external to those requestsScript error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".
  • LocaleResolver: responsible for resolving and optionally saving of the locale of an individual user.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".
  • MultipartResolver: facilitate working with file uploads by wrapping incoming requests.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".
  • View: responsible for returning a response to the client. The View should not contain any business logic and should only present the data encapsulated by the Model.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". Some requests may go straight to View without going to the Model part; others may go through all three.
  • ViewResolver: responsible for selecting a View based on a logical name for the ViewScript error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". (use is not strictly requiredScript error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".Template:Rp).
  • Model: responsible for encapsulating business data.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". The Model is exposed to the view by the controller.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".Template:Rp (use is not strictly required).

Each strategy interface above has an important responsibility in the overall framework. The abstractions offered by these interfaces are powerful, so to allow for a set of variations in their implementations.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".Template:Rp Spring MVC ships with implementations of all these interfaces and offers a feature set on top of the Servlet API. However, developers and vendors are free to write other implementations. Spring MVC uses the Java java.util.Map interface as a data-oriented abstraction for the Model where keys are expected to be String values.Script error: No such module "Unsubst".

The ease of testing the implementations of these interfaces is one important advantage of the high level of abstraction offered by Spring MVC.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".Template:Rp DispatcherServlet is tightly coupled to the Spring inversion of control container for configuring the web layers of applications. However, web applications can use other parts of the Spring Framework, including the container, and choose not to use Spring MVC.

A workflow of Spring MVC

When a user clicks a link or submits a form in their web-browser, the request goes to the Spring DispatcherServlet. DispatcherServlet is a front-controller in Spring MVC.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". The DispatcherServlet is highly customizable and flexible.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". Specifically, it is capable of handling more types of handlers than any implementations of org. springframework.web.servlet.mvc.Controller or org. springframework.stereotype.Controller annotated classes.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". It consults one or more handler mappings.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". DispatcherServlet chooses an appropriate controller and forwards the request to it. The Controller processes the particular request and generates a result. It is known as Model. This information needs to be formatted in html or any front-end technology like Jakarta Server Pages (also known as JSP)Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". or Thymeleaf.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". This is the View of an application.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". All of the information is in the Model And View object. When the controller is not coupled to a particular view, DispatcherServlet finds the actual View (such as JSP) with the help of ViewResolver.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".Template:Rp

Configuration of DispatcherServlet

As of Servlet Specification version 3.0, there are a few ways of configuring the DispatcherServlet:Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".

  • By configuring it in web.xml as shown below:Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".
<servlet>
  <servlet-name>MyServlet</servlet-name>
  <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
</servlet>

<servlet-mapping>
  <servlet-name>MyServlet</servlet-name>
  <url-pattern>/<url-pattern>
</servlet-mapping>
  • By configuring it in web-fragment.xmlScript error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".
  • By using javax.servlet.ServletContainerInitializerScript error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".
  • By implementing the org.springframework.web.WebApplicationInitializer interface.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".
  • By using the built-in autoconfiguration for Spring Boot, which uses the SpringBootServletInitializer class.lmScript error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".

Remote access framework

Spring's Remote Access framework is an abstraction for working with various RPC (remote procedure call)-based technologies available on the Java platform both for client connectivity and marshalling objects on servers.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". The most important feature offered by this framework is to ease configuration and usage of these technologies as much as possible by combining inversion of control and AOP.

The framework provides fault-recovery (automatic reconnection after connection failure) and some optimizations for client-side use of EJB remote stateless session beans.

Spring provides support for these protocols and products out of the box

  • HTTP-based protocols
    • Hessian: binary serialization protocol,Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".Template:Rp open-sourcedScript error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".Template:Rp and maintained by CORBA-based protocolsScript error: No such module "Unsubst".. Hessian is maintained by the company Caucho.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".Template:Rp Hessian is suitable for stateless remoting needs, in particular, Java-to-Java communication.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".Template:Rp
    • Burlap: An XML-based binary protocol that is open-sourced and also maintained by the company Caucho.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".Template:Rp The only advantage of using Burlap instead of Hessian is that it is XML-parsable and human readable.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".Template:Rp For Java-to-Java communication, the Hessian is preferred since it is more light-weight and efficient.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".Template:Rp
    • RMI (1): method invocations using RMI infrastructure yet specific to SpringScript error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".
    • RMI (2): method invocations using RMI interfaces complying with regular RMI usageScript error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".
    • RMI-IIOP (CORBA): method invocations using RMI-IIOP/CORBA
  • Enterprise JavaBean client integrationScript error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".
    • Local EJB stateless session bean connectivity: connecting to local stateless session beans
    • Remote EJB stateless session bean connectivity: connecting to remote stateless session beans
  • SOAP
    • Integration with the Apache Axis Web services frameworkScript error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".

Apache CXF provides integration with the Spring Framework for RPC-style exporting of objects on the server side.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".

Both client and server setup for all RPC-style protocols and products supported by the Spring Remote access framework (except for the Apache Axis support) is configured in the Spring Core container.

There is an alternative open-source implementation (Cluster4Spring) of a remoting subsystem included in the Spring Framework that is intended to support various schemes of remoting (1-1, 1-many, dynamic services discovering).Script error: No such module "Unsubst".

Convention-over-configuration rapid application development

Script error: No such module "labelled list hatnote".

Spring Boot

Template:Main article Spring Boot Extension is Spring's convention-over-configuration solution for creating stand-alone, production-gradeScript error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". Spring-based Applications that you can "just run".[21] It is preconfigured with the Spring team's "opinionated view"Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". of the best configuration and use of the Spring platform and third-party libraries so you can get started with minimum fuss. Most Spring Boot applications need very little Spring configuration.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".

Key Features:

  • Create stand-alone Spring applications
  • Embed Tomcat or JettyScript error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". directly (no need to deploy WAR files)
  • Provide opinionated 'starter' Project Object Models (POMs) to simplify your Maven/Gradle configurationScript error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".
  • Automatically configure Spring whenever possibleScript error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".
  • Provide production-readyScript error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". features such as metrics,Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". health checksScript error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". and externalized configurationScript error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".
  • Absolutely no code generationScript error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". and no requirementScript error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". for XML configuration.[22]
  • Smooth Integration and supports all Enterprise Integration Patterns.

Spring Roo

Template:Main article Spring Roo is a community project which provides an alternative, code-generation based approach at using convention-over-configuration to rapidly build applications in Java. It currently supports Spring Framework, Spring Security and Spring Web Flow. Roo differs from other rapid application development frameworks by focusing on:

  • Extensibility (via add-ons)
  • Java platform productivity (as opposed to other languages)
  • Lock-in avoidance (Roo can be removed within a few minutes from any application)
  • Runtime avoidance (with associated deployment advantages)
  • Usability (particularly via the shell features and usage patterns)

Batch framework

Template:Main article Spring Batch is a framework for batch processing that provides reusable functions that are essential in processing large volumes of records, including:

  • logging/tracing
  • transaction management
  • job processing statisticsScript error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".
  • job restart

It provides more advanced technical services and features that enables extremely high-volumeScript error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". and high-performance batch jobsScript error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". through optimizations and partitioningScript error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". techniques.

Spring Batch executes a series of jobs; a job consists of many steps and each step consists of a "READ-PROCESS-WRITE" task or single operation task (tasklet). A "single" operation task is also known as a tasklet.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". It means doing a single task only, like cleaning up the resources before or after a step is started or completed.

The "READ-PROCESS-WRITE" process consists of these steps: "read" data from a resource (comma-separated values (CSV), XML, or database), "process" it, then "write" it to other resources (CSV, XML, or database). For example, a step may read data from a CSV file,Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". process it, and write it into the database. Spring Batch provides many classes to read/write CSV, XML, and database.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".

The steps can be chained together to run as a job.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".

Integration framework

Template:Main article Spring Integration is a framework for Enterprise application integration that provides reusable functions essential to messaging or event-driven architectures.

  • routers – routes a message to a message channel based on conditionsScript error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".
  • transformers – converts/transforms/changes the message payload and creates a new message with transformed payloadScript error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".
  • adapters – integrates with other technologies and systems (HTTP, AMQP (Advanced Message Queuing Protocol),Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". JMS (Java Message Service), XMPP (Extensible Messaging and Presence Protocol), SMTP (Simple Mail Transfer Protocol),Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". IMAP (Internet Message Access Protocol), FTP (File Transfer Protocol) as well as FTPS/SFTP, file systems, etc.)
  • filters – filters a message based on criteria. If the criteria are not met, the message is dropped.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".
  • service activators – invoke an operation on a service object. Spring supports the use of the annotation @ServiceActivator to declare the component that requires this functionality.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".
  • management and auditing
  • gateways - exposes an interface to the client for the requested services. A messaging middleware is responsible for provisioning this interface. This interface decouples the messaging middleware from the client by hiding the underlying JMS or Spring Integration APIs. Gateways are related to the Facade pattern. Spring's Integration class, SimpleMessagingGateway, provides essential support for gateways. SimpleMessagingGateway enables the Spring application to specify the channel that sends requests, and the channel that expects to receive responses. The primary focus of SimpleMessagingGateway is to deal with payloads, which spares the client from the intricate details of the transmitted and received messages. SimpleMessagingGateway is used along with channels to enable integration with file systems, JMS, e-mail, or any other systems that require payloads and channels.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".
  • splitter - Separates a large payload into smaller payloads to support different processing flows. The splitter is achieved in Spring using the splitter component. The splitter component usually forwards the messages to classes with more specialized functionality. Spring supports the @Splitter annotation to declare the component that requires this functionality.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".
  • aggregator - Used for combining many messages into a single result. Loosely speaking, the aggregator is the reverse of the splitter. The aggregator publishes a single message for all components downstream. Spring supports the @Aggregator annotation to declare the component that requires this functionality.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".

Spring Integration supports pipe-and-filter based architectures.

Spring WebSocket

An essential rule for dealing with data streams effectively is to never block.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". The WebSocket is a viable solution to this problem.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". The WebSocket Protocol is a low-level transport protocol that allows full-duplex communication channels over a TCP connection. The WebSocket acts as an alternative to HTTP to enable two-way communication between the client and the server. The WebSocket is especially useful for applications that require frequent and fast exchanges of small data chunks, at a high speed and volume.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".

Spring supports the WebSocket protocol by providing the WebSocket API for the reactive application. The @EnableWebSocket annotation gives Websocket request processing functionality when places in a Spring configuration class. A mandatory interface is the WebSocketConfigurer which grants access to the WebSocketConfigurer. Then, the Websocket URL is mapped to the relevant handlers by implementing the registerWebSocketHandlers(WebSocketHandlerRegistry) method.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".

Spring WebFlux

Spring WebFlux is a framework following the functional programming paradigm, designed for building reactive Spring applications. This framework uses functional programming and Reactive Streams extensively. A good use case for Spring WebFlux is for applications that require sending and receiving instantaneous information, such as a web application with chatting capabilities.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".

Although applications using Spring WebFlux technology is usually less readable than their MVC counterparts, they are more resilient, and simpler to extend.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters". Spring WebFlux reduces the need to deal with the complications associated with synchronizing thread access.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".

Spring WebFlux supports server-sent events (SSE), which is a server push technology that allows the client to get automatic updates from a server through an HTTP connection. This communication is unidirectional, and shares many similarities with the publish/subscribe model found in JMS.Script error: No such module "Footnotes".Script error: No such module "Check for unknown parameters".

Relationship with Jakarta Enterprise Beans (EJB)

Template:Main article The container can be turned into a partially compliant EJB (Enterprise JavaBeans) 3.0 container by means of the Pitchfork project.Script error: No such module "Unsubst". SomeScript error: No such module "Unsubst". criticize the Spring Framework for not complying with standards.[23]Script error: No such module "Unsubst". However, SpringSource doesn't see EJB 3 compliance as a major goal, and claims that the Spring Framework and the container allow for more powerful programming models.[24]Script error: No such module "Unsubst".

Spring4Shell vulnerability

Script error: No such module "Labelled list hatnote". A remote code execution vulnerability affecting certain versions of Spring Framework was published in April 2022 under Template:CVE. It was given the name Spring4Shell in reference to the recent Log4Shell vulnerability, both having similar proofs-of-concept in which attackers could on vulnerable machines, gain shell access[25] or even full control.[26]

See also

Script error: No such module "Portal".

Citations

<templatestyles src="Reflist/styles.css" />

  1. Script error: No such module "citation/CS1".
  2. Jolt winners 2006
  3. Script error: No such module "citation/CS1".
  4. Script error: No such module "citation/CS1".
  5. Script error: No such module "citation/CS1".
  6. Script error: No such module "citation/CS1".
  7. a b Script error: No such module "citation/CS1".
  8. Script error: No such module "citation/CS1".
  9. Script error: No such module "citation/CS1".
  10. Script error: No such module "citation/CS1".
  11. Spring Framework documentation for the Core Container
  12. What is the difference between the depencylookup and dependency injection - Spring Forum. Forum.springsource.org (2009-10-28). Retrieved on 2013-11-24.
  13. Script error: No such module "citation/CS1".
  14. Spring AOP XML Configuration
  15. AspectJ Annotation Configuration
  16. Hibernate VS Spring
  17. Script error: No such module "citation/CS1".
  18. Introduction to the Spring Framework
  19. Johnson, Expert One-on-One J2EE Design and Development, Ch. 12. et al.
  20. Patterns of Enterprise Application Architecture: Front Controller
  21. Script error: No such module "citation/CS1".
  22. Script error: No such module "citation/CS1".
  23. Spring VS EJB3
  24. Script error: No such module "citation/CS1".
  25. Script error: No such module "citation/CS1".
  26. Script error: No such module "citation/CS1".

Script error: No such module "Check for unknown parameters".

References

<templatestyles src="Refbegin/styles.css" />

  • Script error: No such module "citation/CS1".
  • Script error: No such module "citation/CS1".
  • Script error: No such module "citation/CS1".
  • Script error: No such module "citation/CS1".
  • Script error: No such module "citation/CS1".
  • Script error: No such module "citation/CS1".
  • Script error: No such module "citation/CS1".
  • Script error: No such module "citation/CS1".
  • Script error: No such module "citation/CS1".
  • Script error: No such module "citation/CS1".
  • Script error: No such module "citation/CS1".
  • Script error: No such module "citation/CS1".
  • Script error: No such module "citation/CS1".
  • Script error: No such module "citation/CS1".
  • Script error: No such module "citation/CS1".
  • Script error: No such module "citation/CS1".
  • Script error: No such module "citation/CS1".

External links

Script error: No such module "Side box".

  • Script error: No such module "Official website".Script error: No such module "Check for unknown parameters".
  • Spring Tutorials

Template:Java (Sun) Template:Authority control