Jump to content

Spring Framework: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
Removed external links from body of article and pruned EL section to meet WP:EL. Pruned duplicate wikilinks in See Also and throughout article.
Line 41: Line 41:


===Inversion of control container (dependency injection)===
===Inversion of control container (dependency injection)===
Central to the Spring Framework is its [[inversion of control]] (IoC) container, which provides a consistent means of configuring and managing Java objects using [[Reflection (computer science)|reflection]]. The container is responsible for managing [[Object lifetime|object lifecycles]] of specific objects: creating these objects, calling their initialization methods, and configuring these objects by wiring them together.
Central to the Spring Framework is its inversion of control (IoC) container, which provides a consistent means of configuring and managing Java objects using [[Reflection (computer science)|reflection]]. The container is responsible for managing [[Object lifetime|object lifecycles]] of specific objects: creating these objects, calling their initialization methods, and configuring these objects by wiring them together.


Objects created by the container are also called ''managed objects'' or ''[[JavaBeans|beans]]''. The container can be configured by loading XML files or detecting specific [[Java annotation]]s on configuration classes. These data sources contain the ''bean definitions'' that provide the information required to create the beans.
Objects created by the container are also called ''managed objects'' or ''[[JavaBeans|beans]]''. The container can be configured by loading XML files or detecting specific [[Java annotation]]s on configuration classes. These data sources contain the ''bean definitions'' that provide the information required to create the beans.


Objects can be obtained by means of either ''[[dependency lookup]]'' or ''[[dependency injection]]''.<ref>[http://forum.springsource.org/showthread.php?79731-What-is-the-difference-between-the-depencylookup-and-dependency-injection What is the difference between the depencylookup and dependency injection - Spring Forum]. Forum.springsource.org (2009-10-28). Retrieved on 2013-11-24.</ref> ''Dependency lookup'' is a pattern where a caller asks the container object for an object with a specific name or of a specific type. ''Dependency injection'' is a pattern where the container passes objects by name to other objects, via either [[constructor (computer science)|constructor]]s, [[Property (programming)|properties]], or [[Factory method pattern|factory methods]].
Objects can be obtained by means of either ''[[dependency lookup]]'' or ''dependency injection''.<ref>[http://forum.springsource.org/showthread.php?79731-What-is-the-difference-between-the-depencylookup-and-dependency-injection What is the difference between the depencylookup and dependency injection - Spring Forum]. Forum.springsource.org (2009-10-28). Retrieved on 2013-11-24.</ref> ''Dependency lookup'' is a pattern where a caller asks the container object for an object with a specific name or of a specific type. ''Dependency injection'' is a pattern where the container passes objects by name to other objects, via either [[constructor (computer science)|constructor]]s, [[Property (programming)|properties]], or [[Factory method pattern|factory methods]].


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 applications and integrates with almost all Java environments, from small-scale applications to large enterprise applications.
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 applications and integrates with almost all Java environments, from small-scale applications to large enterprise applications.


The container can be turned into a partially compliant [[Enterprise JavaBeans#EJB 3.0, final release (2006-05-11)|EJB 3.0]] container by means of the [http://www.springsource.com/web/guest/pitchfork Pitchfork] project. Some{{Who|date=May 2011}} criticize the Spring Framework for not complying with standards.<ref>[http://www.andygibson.net/blog/index.php/2008/08/28/is-spring-between-the-devil-and-the-ejb Spring VS EJB3]</ref> However, [http://www.springsource.com/ 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.<ref>
The container can be turned into a partially compliant [[Enterprise JavaBeans#EJB 3.0, final release (2006-05-11)|EJB 3.0]] container by means of the Pitchfork project. Some{{Who|date=May 2011}} criticize the Spring Framework for not complying with standards.<ref>[http://www.andygibson.net/blog/index.php/2008/08/28/is-spring-between-the-devil-and-the-ejb Spring VS EJB3]</ref> 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.<ref>
{{cite web
{{cite web
| url = http://www.springsource.com/web/guest/pitchfork/pitchfork-faq
| url = http://www.springsource.com/web/guest/pitchfork/pitchfork-faq
Line 59: Line 59:


=== Aspect-oriented programming framework ===
=== Aspect-oriented programming framework ===
The Spring Framework has its own '''[[Aspect-oriented programming]] (AOP)''' framework that modularizes [[cross-cutting concern]]s in [[Aspect (computer science)|aspects]]. The motivation for creating a separate AOP framework comes from the belief that it would be possible to provide basic AOP features without too much complexity in either design, implementation, or configuration. The Spring AOP framework also takes full advantage of the Spring container.
The Spring Framework has its own '''Aspect-oriented programming (AOP)''' framework that modularizes cross-cutting concerns in [[Aspect (computer science)|aspects]]. The motivation for creating a separate AOP framework comes from the belief that it would be possible to provide basic AOP features without too much complexity in either design, implementation, or configuration. The Spring AOP framework also takes full advantage of the Spring container.


The Spring AOP framework is [[Proxy pattern|proxy pattern-based]], and is configured at [[run time (program lifecycle phase)|run time]]. This removes the need for a compilation step or load-time weaving. On the other hand, interception only allows for public method-execution on existing objects at a [[join point]].
The Spring AOP framework is [[Proxy pattern|proxy pattern-based]], and is configured at [[run time (program lifecycle phase)|run time]]. This removes the need for a compilation step or load-time weaving. On the other hand, interception only allows for public method-execution on existing objects at a [[join point]].


Compared to the [[AspectJ]] framework, Spring AOP is less powerful, but also less complicated. Spring 1.2 includes support to configure AspectJ [[Aspect (computer science)|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. Further, Spring 2.0 added a Spring Aspects library that uses AspectJ to offer common Spring features such as declarative transaction management and dependency injection via AspectJ compile-time or load-time weaving. [[SpringSource]] also uses AspectJ AOP in other Spring projects such as [[Spring Roo]] and Spring Insight, with [[Spring Security]] also offering an AspectJ-based aspect library.
Compared to the [[AspectJ]] framework, Spring AOP is less powerful, but also less complicated. 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. Further, Spring 2.0 added a Spring Aspects library that uses AspectJ to offer common Spring features such as declarative transaction management and dependency injection via AspectJ compile-time or load-time weaving. [[SpringSource]] also uses AspectJ AOP in other Spring projects such as Spring Roo and Spring Insight, with Spring Security also offering an AspectJ-based aspect library.


Spring AOP has been designed to make it able to work with cross-cutting concerns inside the Spring Framework. Any object which is created and configured by the container can be ''enriched'' using Spring AOP.
Spring AOP has been designed to make it able to work with cross-cutting concerns inside the Spring Framework. Any object which is created and configured by the container can be ''enriched'' using Spring AOP.
Line 88: Line 88:
http://www.springframework.org/schema/aop/spring-aop-3.0.xsd">
http://www.springframework.org/schema/aop/spring-aop-3.0.xsd">


The Spring team decided not to introduce new AOP-related terminology; therefore, in the Spring reference documentation and API, terms such as [[aspect (computer programming)|aspect]], [[join point]], [[Advice (computer science)|advice]], [[pointcut]], introduction, [[target object]] ([[advised object]]), [[AOP proxy]], and weaving all have the same meanings as in most other AOP frameworks (particularly [[AspectJ]]).
The Spring team decided not to introduce new AOP-related terminology; therefore, in the Spring reference documentation and API, terms such as [[aspect (computer programming)|aspect]], join point, [[Advice (computer science)|advice]], pointcut, introduction, [[target object]] ([[advised object]]), [[AOP proxy]], and weaving all have the same meanings as in most other AOP frameworks (particularly AspectJ).


===Data access framework===
===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|iBatis]]/[[MyBatis]], [[Hibernate (Java)|Hibernate]], [[Java Data Objects|JDO]], [[Java Persistence API|JPA]], [[TopLink|Oracle TopLink]], [[Ojb|Apache OJB]], and [[Apache Cayenne]], among others.
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|iBatis]]/[[MyBatis]], [[Hibernate (Java)|Hibernate]], [[Java Data Objects|JDO]], [[Java Persistence API|JPA]], [[TopLink|Oracle TopLink]], [[Ojb|Apache OJB]], and [[Apache Cayenne]], among others.


For all of these supported frameworks, Spring provides these features
For all of these supported frameworks, Spring provides these features
Line 101: Line 101:
* '''Abstraction''' for [[Binary large object|BLOB]] and [[Character large object|CLOB]] handling
* '''Abstraction''' for [[Binary large object|BLOB]] and [[Character large object|CLOB]] handling


All these features become available when using [[Template method pattern|''template'' classes]] provided by Spring for each supported framework. Critics have said these ''template'' classes are intrusive and offer no advantage over using (for example) the [[Hibernate (Java)|Hibernate]] API directly.<ref>[http://houseofhaug.wordpress.com/2005/08/12/hibernate-hates-spring Hibernate VS Spring]</ref>{{Failed verification|date=January 2012}} In response, the Spring developers have made it possible to use the Hibernate and [[Java Persistence API|JPA]] APIs directly. This however requires transparent transaction management, as application code no longer assumes the responsibility to obtain and close database resources, and does not support exception translation.
All these features become available when using [[Template method pattern|''template'' classes]] provided by Spring for each supported framework. Critics have said these ''template'' classes are intrusive and offer no advantage over using (for example) the Hibernate API directly.<ref>[http://houseofhaug.wordpress.com/2005/08/12/hibernate-hates-spring Hibernate VS Spring]</ref>{{Failed verification|date=January 2012}} 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, and does not support exception translation.


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. The Spring Framework is the only framework available in Java that offers managed data access environments outside of an application server or container.{{Citation needed|date=December 2007}}
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. The Spring Framework is the only framework available in Java that offers managed data access environments outside of an application server or container.{{Citation needed|date=December 2007}}


While using Spring for transaction management with Hibernate, the following beans may have to be configured:
While using Spring for transaction management with Hibernate, the following beans may have to be configured:
* A [[Datasource|Data Source]] like <code>com.mchange.v2.c3p0.ComboPooledDataSource</code> or <code>[http://commons.apache.org/dbcp/apidocs/org/apache/commons/dbcp/BasicDataSource.html org.apache.commons.dbcp.BasicDataSource]</code>
* A [[Datasource|Data Source]] like <code>com.mchange.v2.c3p0.ComboPooledDataSource</code> or <code>org.apache.commons.dbcp.BasicDataSource</code>
* A SessionFactory like <code>[http://static.springsource.org/spring/docs/2.5.6/api/org/springframework/orm/hibernate3/LocalSessionFactoryBean.html org.springframework.orm.hibernate3.LocalSessionFactoryBean]</code> with a DataSource attribute
* A SessionFactory like <code>org.springframework.orm.hibernate3.LocalSessionFactoryBean</code> with a DataSource attribute
* A HibernateProperties like <code>[http://static.springsource.org/spring/docs/2.5.6/api/org/springframework/beans/factory/config/PropertiesFactoryBean.html org.springframework.beans.factory.config.PropertiesFactoryBean]</code>
* A HibernateProperties like <code>org.springframework.beans.factory.config.PropertiesFactoryBean</code>
* A TransactionManager like <code>[http://static.springsource.org/spring/docs/2.5.6/api/org/springframework/orm/hibernate3/HibernateTransactionManager.html org.springframework.orm.hibernate3.HibernateTransactionManager]</code> with a SessionFactory attribute
* A TransactionManager like <code>org.springframework.orm.hibernate3.HibernateTransactionManager</code> with a SessionFactory attribute
Other points of configuration include:
Other points of configuration include:
* An AOP configuration of cutting points.
* An AOP configuration of cutting points.
Line 120: Line 120:
* working with [[nested transaction]]s
* working with [[nested transaction]]s
* working with [[savepoint]]s
* working with [[savepoint]]s
* working in almost all environments of the [[Java platform]]
* working in almost all environments of the Java platform


In comparison, [[Java Transaction API|JTA]] only supports [[nested transaction]]s and [[Distributed transaction|global transactions]], and requires an [[application server]] (and in some cases also deployment of applications in an application server).
In comparison, [[Java Transaction API|JTA]] only supports nested transactions and global transactions, and requires an application server (and in some cases also deployment of applications in an application server).


The Spring Framework ships a [http://static.springsource.org/spring/docs/3.1.x/javadoc-api/org/springframework/transaction/PlatformTransactionManager.html ''PlatformTransactionManager''] for a number of transaction management strategies:
The Spring Framework ships a ''PlatformTransactionManager'' for a number of transaction management strategies:


* Transactions managed on a [[JDBC]] ''Connection''
* Transactions managed on a JDBC ''Connection''
* Transactions managed on [[Object-relational mapping]] ''Units of Work''
* Transactions managed on Object-relational mapping ''Units of Work''
* Transactions managed via the [[Java Transaction API|JTA]] ''TransactionManager'' and ''UserTransaction''
* Transactions managed via the JTA ''TransactionManager'' and ''UserTransaction''
* Transactions managed on other resources, like [[object database]]s
* Transactions managed on other resources, like [[object database]]s


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


* Programmatically, by using Spring's [http://static.springsource.org/spring/docs/3.1.x/javadoc-api/org/springframework/transaction/support/TransactionTemplate.html ''TransactionTemplate'']
* Programmatically, by using Spring's ''TransactionTemplate''
* Configuratively, by using [[metadata]] like XML or [[Java annotation]]s ([http://static.springsource.org/spring/docs/3.1.x/javadoc-api/org/springframework/transaction/annotation/Transactional.html @Transactional], [http://static.springsource.org/spring/docs/3.1.x/javadoc-api/org/springframework/transaction/annotation/package-summary.html etc])
* Configuratively, by using [[metadata]] like XML or Java annotations (@Transactional, etc)


Together with Spring's data access framework &mdash; which integrates the transaction management framework &mdash; it is possible to set up a transactional system through configuration without having to rely on [[Java Transaction API|JTA]] or [[EJB]]. The transactional framework also integrates with [[Java Message Service|messaging]] and [[Cache (computing)|caching]] engines.
Together with Spring's data access framework &mdash; which integrates the transaction management framework &mdash; 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 messaging and [[Cache (computing)|caching]] engines.


=== Model-view-controller framework ===
=== Model-view-controller framework ===
The Spring Framework features its own [[Model-view-controller|MVC]] [[web application framework]], which wasn't 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,<ref>[http://www.theserverside.com/tt/articles/article.tss?l=SpringFramework Introduction to the Spring Framework]</ref> 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.<ref>Johnson, Expert One-on-One J2EE Design and Development, Ch.&nbsp;12. et al.</ref>
The Spring Framework features its own [[Model-view-controller|MVC]] [[web application framework]], which wasn't 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,<ref>[http://www.theserverside.com/tt/articles/article.tss?l=SpringFramework Introduction to the Spring Framework]</ref> 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.<ref>Johnson, Expert One-on-One J2EE Design and Development, Ch.&nbsp;12. et al.</ref>


Like Struts, Spring MVC is a request-based framework. The framework defines [[Strategy pattern|strategy]] interfaces 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 [[Java Servlet|Servlet API]]. This tight coupling to the [[Java Servlet|Servlet API]] is seen by some as a failure on the part of the Spring developers to offer a high-level abstraction for Web-based applications {{Citation needed|date=February 2007}}. However, this coupling makes sure that the features of the Servlet API remain available to developers while offering a high abstraction framework to ease working with said API.
Like Struts, Spring MVC is a request-based framework. The framework defines [[Strategy pattern|strategy]] interfaces 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 [[Java Servlet|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 abstraction for Web-based applications {{Citation needed|date=February 2007}}. However, this coupling makes sure that the features of the Servlet API remain available to developers while offering a high abstraction framework to ease working with said API.


The [http://static.springsource.org/spring/docs/3.2.x/javadoc-api/org/springframework/web/servlet/DispatcherServlet.html ''DispatcherServlet''] class is the [[Front Controller pattern|front controller]]<ref>Patterns of Enterprise Application Architecture: [http://www.martinfowler.com/eaaCatalog/frontController.html Front Controller]</ref> of the framework and is responsible for delegating control to the various interfaces during the execution phases of an [[Hypertext Transfer Protocol|HTTP request]].
The ''DispatcherServlet'' class is the [[Front Controller pattern|front controller]]<ref>Patterns of Enterprise Application Architecture: [http://www.martinfowler.com/eaaCatalog/frontController.html Front Controller]</ref> of the framework and is responsible for delegating control to the various interfaces during the execution phases of an [[Hypertext Transfer Protocol|HTTP request]].


The most important interfaces defined by Spring MVC, and their responsibilities, are listed below:
The most important interfaces defined by Spring MVC, and their responsibilities, are listed below:
* [http://static.springsource.org/spring/docs/3.2.x/javadoc-api/org/springframework/web/servlet/mvc/Controller.html Controller]: comes between Model and View to manage incoming requests and redirect to proper response. It acts as a gate that directs the incoming information. It switches between going into model or view.
* Controller: comes between Model and View to manage incoming requests and redirect to proper response. It acts as a gate that directs the incoming information. It switches between going into model or view.
* [http://static.springsource.org/spring/docs/3.2.x/javadoc-api/org/springframework/web/portlet/HandlerAdapter.html HandlerAdapter]: execution of objects that handle incoming requests
* HandlerAdapter: execution of objects that handle incoming requests
* [http://static.springsource.org/spring/docs/3.2.x/javadoc-api/org/springframework/web/portlet/HandlerInterceptor.html HandlerInterceptor]: interception of incoming requests comparable, but not equal to [[Java Servlet|Servlet]] filters (use is optional and not controlled by ''DispatcherServlet'').
* HandlerInterceptor: interception of incoming requests comparable, but not equal to Servlet filters (use is optional and not controlled by ''DispatcherServlet'').
* [http://static.springsource.org/spring/docs/3.2.x/javadoc-api/org/springframework/web/portlet/HandlerMapping.html HandlerMapping]: selecting objects that handle incoming requests (handlers) based on any attribute or condition internal or external to those requests
* HandlerMapping: selecting objects that handle incoming requests (handlers) based on any attribute or condition internal or external to those requests
* [http://static.springsource.org/spring/docs/3.2.x/javadoc-api/org/springframework/web/servlet/LocaleResolver.html LocaleResolver]: resolving and optionally saving of the [[locale]] of an individual user
* LocaleResolver: resolving and optionally saving of the [[locale]] of an individual user
* [http://static.springsource.org/spring/docs/3.2.x/javadoc-api/org/springframework/web/multipart/MultipartResolver.html MultipartResolver]: facilitate working with file uploads by wrapping incoming requests
* MultipartResolver: facilitate working with file uploads by wrapping incoming requests
* [http://static.springsource.org/spring/docs/3.2.x/javadoc-api/org/springframework/web/servlet/View.html View]: responsible for returning a response to the client. Some requests may go straight to view without going to the model part; others may go through all three.
* View: responsible for returning a response to the client. Some requests may go straight to view without going to the model part; others may go through all three.
* [http://static.springsource.org/spring/docs/3.2.x/javadoc-api/org/springframework/web/servlet/ViewResolver.html ViewResolver]: selecting a ''View'' based on a logical name for the view (use is not strictly required)
* ViewResolver: selecting a ''View'' based on a logical name for the view (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, Spring MVC ships with implementations of all these interfaces and together offers a feature set on top of the [[Java Servlet|Servlet API]]. However, developers and vendors are free to write other implementations. Spring MVC uses the Java <code>java.util.Map</code> interface as a data-oriented abstraction for the ''Model'' where keys are expected to be string values.
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, Spring MVC ships with implementations of all these interfaces and together 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 <code>java.util.Map</code> interface as a data-oriented abstraction for the ''Model'' where keys are expected to be string values.


The ease of testing the implementations of these interfaces seems one important advantage of the high level of abstraction offered by Spring MVC. ''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.
The ease of testing the implementations of these interfaces seems one important advantage of the high level of abstraction offered by Spring MVC. ''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.


===Remote access framework===
===Remote access framework===
Spring's Remote Access framework is an abstraction for working with various RPC-based technologies available on the [[Java platform]] both for client connectivity and marshalling objects on servers. 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 [[Aspect-oriented programming|AOP]].
Spring's Remote Access framework is an abstraction for working with various RPC-based technologies available on the Java platform both for client connectivity and marshalling objects on servers. 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 also provides fault-recovery (automatic reconnection after connection failure) and some optimizations for client-side use of {{clarify-span|[[EJB]] remote stateless session beans|date=February 2013}}.
The framework also provides fault-recovery (automatic reconnection after connection failure) and some optimizations for client-side use of {{clarify-span|EJB remote stateless session beans|date=February 2013}}.


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


* '''[[Hypertext Transfer Protocol|HTTP]]-based protocols'''
* '''HTTP-based protocols'''
** [[Hessian (Web service protocol)|Hessian]]: binary serialization protocol, open-sourced and maintained by [[Common Object Request Broker Architecture|CORBA]]-based protocols'''
** [[Hessian (Web service protocol)|Hessian]]: binary serialization protocol, open-sourced and maintained by [[Common Object Request Broker Architecture|CORBA]]-based protocols'''
** [[Java remote method invocation|RMI]] (1): method invocations using RMI infrastructure yet specific to Spring
** [[Java remote method invocation|RMI]] (1): method invocations using RMI infrastructure yet specific to Spring
Line 172: Line 172:
** [[RMI-IIOP]] ([[Common Object Request Broker Architecture|CORBA]]): method invocations using RMI-IIOP/CORBA
** [[RMI-IIOP]] ([[Common Object Request Broker Architecture|CORBA]]): method invocations using RMI-IIOP/CORBA
* '''[[Enterprise JavaBean]] client integration'''
* '''[[Enterprise JavaBean]] client integration'''
** Local [[EJB]] stateless session bean connectivity: connecting to local stateless session beans
** Local EJB stateless session bean connectivity: connecting to local stateless session beans
** Remote EJB stateless session bean connectivity: connecting to remote stateless session beans
** Remote EJB stateless session bean connectivity: connecting to remote stateless session beans
* '''[[SOAP (protocol)|SOAP]]'''
* '''SOAP'''
** Integration with the [[Apache Axis]] Web services framework
** Integration with the [[Apache Axis]] Web services framework


[[Apache CXF]] provides integration with the Spring Framework for RPC-style exporting of object on the server side.
[[Apache CXF]] provides integration with the Spring Framework for RPC-style exporting of object on the server side.


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.
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 alternative open-source implementation ([http://www.soft-amis.com/cluster4spring/index.html Cluster4Spring]) of a remoting subsystem included into Spring Framework that is intended to support various schemes of remoting (1-1, 1-many, dynamic services discovering)…
There is alternative open-source implementation (Cluster4Spring) of a remoting subsystem included into Spring Framework that is intended to support various schemes of remoting (1-1, 1-many, dynamic services discovering)…


=== Convention-over-configuration rapid application development ===
=== Convention-over-configuration rapid application development ===
Spring Boot is Spring's [[Convention over configuration|convention-over-configuration]] solution for creating stand-alone, production-grade Spring based Applications that you can "just run".<ref>[http://projects.spring.io/spring-boot/ Spring Boot]</ref> It takes an opinionated view 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.
Spring Boot is Spring's convention-over-configuration solution for creating stand-alone, production-grade Spring based Applications that you can "just run".<ref>[http://projects.spring.io/spring-boot/ Spring Boot]</ref> It takes an opinionated view 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.


* Create stand-alone Spring applications
* Create stand-alone Spring applications
Line 193: Line 193:
* Absolutely no code generation and no requirement for XML configuration
* Absolutely no code generation and no requirement for XML configuration


[[Spring Roo]] provides an alternative, code-generation based approach at using [[Convention over configuration|convention-over-configuration]] to rapidly build applications in [[Java (programming language)|Java]]. It currently supports Spring Framework, [[Spring Security]] and [[Spring Web Flow]]. Roo differs from other [[rapid application development]] frameworks by focusing on:
Spring Roo provides an alternative, code-generation based approach at using convention-over-configuration to rapidly build applications in [[Java (programming language)|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)
* Extensibility (via add-ons)
Line 215: Line 215:
* routers - routes a message to a message channel based on conditions
* routers - routes a message to a message channel based on conditions
* transformers - converts/transforms/changes the message payload and creates a new message with transformed payload
* transformers - converts/transforms/changes the message payload and creates a new message with transformed payload
* adapters - to integrate with other technologies and systems ([[HTTP]], [[AMQP]], [[Java Message Service|JMS]], [[XMPP]], [[SMTP]], [[IMAP]], [[FTP]] (as well as FTPS/SFTP), file systems, etc.)
* adapters - to integrate with other technologies and systems (HTTP, [[AMQP]], JMS, [[XMPP]], [[SMTP]], [[IMAP]], [[FTP]] (as well as FTPS/SFTP), file systems, etc.)
* filters - filters message based on criteria. if criteria is not met, message is dropped
* filters - filters message based on criteria. if criteria is not met, message is dropped
* service activators - invoke an operation on a service object
* service activators - invoke an operation on a service object
Line 231: Line 231:
* [[Apache Tapestry]]
* [[Apache Tapestry]]
* [[Google Guice]]
* [[Google Guice]]
* [[Weld CDI]]
* [[Juzu Web Framework]]
* [[Juzu Web Framework]]
* [[Spring Web Flow]]


==References==
==References==
Line 376: Line 374:
==External links==
==External links==
{{Wikibooks|Java Programming|Spring framework}}
{{Wikibooks|Java Programming|Spring framework}}
* {{Official website|https://spring.io}}
* [http://wiki.magnolia-cms.com/display/WIKI/Magnolia+Blossom Blossom: Spring Framework integration module] for [[Magnolia (CMS)|Magnolia CMS]]
* [https://spring.io/guides Spring - Guides and Tutorials]
* [http://javadepend.wordpress.com/2011/10/26/spring-the-art-of-using-grasp-patterns/ Spring: The art of using GRASP Patterns]
* [http://projects.spring.io/spring-android/ Spring Android]
* [http://projects.spring.io/spring-batch/ Spring Batch]
* [http://projects.spring.io/spring-boot/ Spring Boot]
* [http://projects.spring.io/spring-data/ Spring Data]
* [http://www.camelcode.org/Spring-tutorials.htm Spring framework tutorials]
* [http://projects.spring.io/spring-hateoas/ Spring Hateoas]
* [http://projects.spring.io/spring-integration/ Spring Integration]
* [http://www.javatips.net/blog/2011/12/spring-jdbc-template Spring JDBC Template]
* [http://projects.spring.io/spring-mobile/ Spring Mobile]
* [http://projects.spring.io/spring-framework/ Spring Framework]
* [http://projects.spring.io/spring-security/ Spring Security]
* [http://projects.spring.io/spring-integration/ Spring Social]
* [http://www.javatips.net/blog/2011/12/spring-tutorial Spring Tutorial]
* [http://r4r.co.in/java/spring/basic Spring Tutorials concept with Spring Examples]
* [http://projects.spring.io/spring-webflow/ Spring Web Flow]
* [http://java2novice.com/spring/ Spring Framework Examples]
* [http://projects.spring.io/spring-ws/ Spring Web Services]
* [http://projects.spring.io/spring-xd/ Spring XD]
* [http://docs.spring.io/spring/docs/current/spring-framework-reference/html/ The Spring Framework - Reference Documentation]
* [http://java360.co.in/best-recommended-books-for-spring-framework/ Best Recommended books for Spring framework]

[[Category:Aspect-oriented programming]]
[[Category:Aspect-oriented programming]]
[[Category:Java enterprise platform]]
[[Category:Java enterprise platform]]

Revision as of 17:14, 2 June 2015

Spring Framework
Developer(s)Pivotal Software
Initial release1 October 2002; 21 years ago (2002-10-01)
Stable release
4.1.6 [1] / March 25, 2015 (2015-03-25)
Preview release
4.2.0-SNAPSHOT / December 26, 2014 (2014-12-26)
Repository
Written inJava
Operating systemCross-platform
PlatformJava Virtual Machine
TypeApplication framework
LicenseApache License 2.0
Websitespring.io

The Spring Framework is an application framework and inversion of control container for the Java platform. 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 platform. Although the framework does not impose any specific programming model, it has become popular in the Java community as an alternative to, replacement for, or even addition to the Enterprise JavaBeans (EJB) model. The Spring Framework is open source.

Version history

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 milestone release, 1.0, was released in March 2004, with further milestone releases in September 2004 and March 2005. 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] The current version is Spring Framework 4.0, which was released in December 2013.[5] Notable improvements in Spring 4.0 include support for Java SE 8, Groovy 2, some aspects of Java EE7, and WebSocket.

Modules

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

Inversion of control container (dependency injection)

Central to the Spring Framework is its inversion of control (IoC) container, which provides a consistent means of configuring and managing Java objects using reflection. The container is responsible for managing object lifecycles of specific objects: creating these objects, calling their initialization methods, and configuring these objects by wiring them together.

Objects created by the container are also called managed objects or beans. The container can be configured by loading XML files or detecting specific Java annotations on configuration classes. These data sources contain the bean definitions that provide the information required to create the beans.

Objects can be obtained by means of either dependency lookup or dependency injection.[7] Dependency lookup is a pattern where a caller asks the container object for an object with a specific name or of a specific type. Dependency injection is a pattern where the container passes objects by name to other objects, via either constructors, properties, or factory methods.

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 applications and integrates with almost all Java environments, from small-scale applications to large enterprise applications.

The container can be turned into a partially compliant EJB 3.0 container by means of the Pitchfork project. Some[who?] criticize the Spring Framework for not complying with standards.[8] 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.[9] You do not create an object, but describe how they should be created, by defining it in the Spring configuration file. You do not call services and components, but tell which services and components must be called, by defining them in the Spring configuration files. This makes the code easy to maintain and easier to test through IoC.

Aspect-oriented programming framework

The Spring Framework has its own Aspect-oriented programming (AOP) framework that modularizes cross-cutting concerns in aspects. The motivation for creating a separate AOP framework comes from the belief that it would be possible to provide basic AOP features without too much complexity in either design, implementation, or configuration. The Spring AOP framework also takes full advantage of the Spring container.

The Spring AOP framework is proxy pattern-based, and is configured at run time. This removes the need for a compilation step or load-time weaving. On the other hand, interception only allows for public method-execution on existing objects at a join point.

Compared to the AspectJ framework, Spring AOP is less powerful, but also less complicated. 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. Further, Spring 2.0 added a Spring Aspects library that uses AspectJ to offer common Spring features such as declarative transaction management and dependency injection via AspectJ compile-time or load-time weaving. SpringSource also uses AspectJ AOP in other Spring projects such as Spring Roo and Spring Insight, with Spring Security also offering an AspectJ-based aspect library.

Spring AOP has been designed to make it able to work with cross-cutting concerns inside the Spring Framework. 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.

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

  • schema-based approach and
  • @AspectJ-based annotation style.
<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-3.0.xsd
       http://www.springframework.org/schema/context
       http://www.springframework.org/schema/context/spring-context-3.0.xsd
       http://www.springframework.org/schema/mvc
       http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
       http://www.springframework.org/schema/aop 
       http://www.springframework.org/schema/aop/spring-aop-3.0.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 meanings 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, Hibernate, JDO, JPA, 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 hierarchy
  • Transaction participation - transparent participation in ongoing transactions
  • Resource unwrapping - retrieving database objects from connection pool wrappers
  • Abstraction for BLOB and CLOB handling

All these features become available when using template classes provided by Spring for each supported framework. Critics have said these template classes are intrusive and offer no advantage over using (for example) the Hibernate API directly.[10][failed verification] 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, and does not support exception translation.

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. The Spring Framework is the only framework available in Java that offers managed data access environments outside of an application server or container.[citation needed]

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

  • A Data Source like com.mchange.v2.c3p0.ComboPooledDataSource or org.apache.commons.dbcp.BasicDataSource
  • A SessionFactory like org.springframework.orm.hibernate3.LocalSessionFactoryBean with a DataSource attribute
  • A HibernateProperties like org.springframework.beans.factory.config.PropertiesFactoryBean
  • A TransactionManager like org.springframework.orm.hibernate3.HibernateTransactionManager with a SessionFactory attribute

Other points of configuration include:

  • An AOP configuration of cutting points.
  • Transaction semantics of AOP advice[clarify].

Transaction management framework

Spring's transaction management framework brings an abstraction mechanism to the Java platform. Its abstraction is capable of:

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

The Spring Framework ships a PlatformTransactionManager for a number of transaction management strategies:

  • Transactions managed on a JDBC Connection
  • Transactions managed on Object-relational mapping Units of Work
  • Transactions managed via the JTA TransactionManager and UserTransaction
  • Transactions managed on other resources, like object databases

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

  • Programmatically, by using Spring's TransactionTemplate
  • Configuratively, by using metadata like XML or Java annotations (@Transactional, 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 messaging and caching engines.

Model-view-controller framework

The Spring Framework features its own MVC web application framework, which wasn't 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,[11] 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.[12]

Like Struts, Spring MVC is a request-based framework. The framework defines strategy interfaces 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 abstraction for Web-based applications [citation needed]. However, this coupling makes sure that the features of the Servlet API remain available to developers while offering a high abstraction framework to ease working with said API.

The DispatcherServlet class is the front controller[13] of the framework and is responsible for delegating control to the various interfaces during the execution phases of an HTTP request.

The most important interfaces defined by Spring MVC, and their responsibilities, are listed below:

  • Controller: comes between Model and View to manage incoming requests and redirect to proper response. It acts as a gate that directs the incoming information. It switches between going into model or view.
  • HandlerAdapter: execution of objects that handle incoming requests
  • HandlerInterceptor: interception of incoming requests comparable, but not equal to Servlet filters (use is optional and not controlled by DispatcherServlet).
  • HandlerMapping: selecting objects that handle incoming requests (handlers) based on any attribute or condition internal or external to those requests
  • LocaleResolver: resolving and optionally saving of the locale of an individual user
  • MultipartResolver: facilitate working with file uploads by wrapping incoming requests
  • View: responsible for returning a response to the client. Some requests may go straight to view without going to the model part; others may go through all three.
  • ViewResolver: selecting a View based on a logical name for the view (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, Spring MVC ships with implementations of all these interfaces and together 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.

The ease of testing the implementations of these interfaces seems one important advantage of the high level of abstraction offered by Spring MVC. 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.

Remote access framework

Spring's Remote Access framework is an abstraction for working with various RPC-based technologies available on the Java platform both for client connectivity and marshalling objects on servers. 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 also provides fault-recovery (automatic reconnection after connection failure) and some optimizations for client-side use of EJB remote stateless session beans[clarify].

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

  • HTTP-based protocols
    • Hessian: binary serialization protocol, open-sourced and maintained by CORBA-based protocols
    • RMI (1): method invocations using RMI infrastructure yet specific to Spring
    • RMI (2): method invocations using RMI interfaces complying with regular RMI usage
    • RMI-IIOP (CORBA): method invocations using RMI-IIOP/CORBA
  • Enterprise JavaBean client integration
    • 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 framework

Apache CXF provides integration with the Spring Framework for RPC-style exporting of object on the server side.

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 alternative open-source implementation (Cluster4Spring) of a remoting subsystem included into Spring Framework that is intended to support various schemes of remoting (1-1, 1-many, dynamic services discovering)…

Convention-over-configuration rapid application development

Spring Boot is Spring's convention-over-configuration solution for creating stand-alone, production-grade Spring based Applications that you can "just run".[14] It takes an opinionated view 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.

  • Create stand-alone Spring applications
  • Embed Tomcat or Jetty directly (no need to deploy WAR files)
  • Provide opinionated 'starter' POMs to simplify your Maven configuration
  • Automatically configure Spring whenever possible
  • Provide production-ready features such as metrics, health checks and externalized configuration
  • Absolutely no code generation and no requirement for XML configuration

Spring Roo 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

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 statistics
  • job restart
  • skip
  • resource management

It also provides more advanced technical services and features that will enable extremely high-volume and high performance batch jobs through optimizations and partitioning techniques.

Integration framework

Spring Integration is a framework for Enterprise application integration that provides reusable functions that are essential in messaging, or event-driven architectures.

  • routers - routes a message to a message channel based on conditions
  • transformers - converts/transforms/changes the message payload and creates a new message with transformed payload
  • adapters - to integrate with other technologies and systems (HTTP, AMQP, JMS, XMPP, SMTP, IMAP, FTP (as well as FTPS/SFTP), file systems, etc.)
  • filters - filters message based on criteria. if criteria is not met, message is dropped
  • service activators - invoke an operation on a service object
  • management and auditing

Spring Integration supports pipe-and-filter based architectures.

Criticisms

Spring has been accused of lacking a cohesive philosophy, and instead being an ad hoc collation of sometimes inconsistent current best practice solutions to disparate problem domains.

Spring has also been criticized for what some developers perceive as an over-reliance on XML. Creating an application using Spring requires one to spend a great deal of time writing or debugging XML files instead of actual Java code, leading many developers to feel like they are "programming in XML" rather than an actual programming language. However, since version 3.0.0 developers have been able to specify all or part of an application context through annotations. Spring Boot makes heavy use of this to minimise the amount of configuration that must be written. Furthermore, the Spring IDE, built on top of Eclipse, provides code-completion, validation, contextual information, and graphical visualizations when editing Spring XML configuration files.

See also

References

  1. ^ [1]
  2. ^ Jolt winners 2006
  3. ^ JAX Innovation Award Gewinner 2006
  4. ^ SpringSource.org
  5. ^ SpringSource.org
  6. ^ Spring Framework documentation for the Core Container
  7. ^ What is the difference between the depencylookup and dependency injection - Spring Forum. Forum.springsource.org (2009-10-28). Retrieved on 2013-11-24.
  8. ^ Spring VS EJB3
  9. ^ "Pitchfork FAQ". Retrieved 2006-06-06.
  10. ^ Hibernate VS Spring
  11. ^ Introduction to the Spring Framework
  12. ^ Johnson, Expert One-on-One J2EE Design and Development, Ch. 12. et al.
  13. ^ Patterns of Enterprise Application Architecture: Front Controller
  14. ^ Spring Boot

Bibliography