Spring Framework (Java)

From Wikipedia, the free encyclopedia

Spring Framework
Developer: Interface21
Latest release: 2.0.1 / Nov 23, 2006
OS: Cross-platform
Use: Application framework
License: Apache 2.0
Website: springframework.org

The Spring Framework (or Spring for short) is an open source application framework for the Java platform. The first version was written by Rod Johnson, who first released it with the publication of his book Expert One-on-One Java EE Design and Development (Wrox Press, October 2002).

The framework was first released under the Apache 2.0 license in June 2003. The first milestone release was 1.0 which was released in March 2004 with further milestone releases in September 2004 and March 2005.

Although the Spring Framework does not enforce any specific programming model it has become widely popular in the Java community primarily as an alternative and replacement for the Enterprise JavaBean model. By design the framework offers a lot of freedom to Java developers yet provides well-documented and easy to use solutions for common practices in the industry.

While the core features of the Spring Framework are usable in any Java application there are many extensions and improvements for building web-based applications on top of the Java Enterprise platform. Spring has gained a lot of popularity because of this and is recognized by vendors as a strategically important framework [citation needed].

Contents

[edit] Spring Framework history

The first parts of what has become the Spring Framework were written by Rod Johnson in 2000 while he was working as an independent consultant for customers in the financial industry in London. While writing his book Expert One-on-one J2EE Design And Development (Programmer to programmer) he further expanded this code to express his views on how applications that work with various parts of the J2EE platform could become simpler and more consistent than developers and companies were used to at that time.

Back in 2001 the dominant programming models for web-based applications were offered by the Java Servlet API and Enterprise JavaBeans. Both are specifications created by Sun Microsystems in collaboration with other vendors and interested parties and enjoy great popularity in the Java community. Applications that aren't web-based like client-based applications or batch applications could be based on open source and commercial tools and projects that provided required features.

Rod Johnson is credited for creating a framework that's based on accepted best practices and that makes them available to all application types, not just web-applications. These ideas are also expressed in his book and after the publication readers requested to provide the code shipped with the book under an open-source license.

A small team of developers willing to work on extending the framework was formed and a project home was created on Sourceforge in February 2003. After working on the framework for more than one year they released their first release (1.0) in March 2004. After this release the framework gained a lot of popularity within the Java community, this is in part due to the higher than average standard of the Javadoc and reference documentation for an open source project.

However, the Spring Framework was also heavily criticized in 2004 and remains the subject of sometimes heated discussions up to this date. At the time of its first major release many developers and thought leaders saw the Spring Framework as a move away from the traditional programming model; this was especially true for Enterprise JavaBeans. One of the design goals of the Spring Framework is to easily integrate with existing J2EE standards and vendor tools. To a large extent this removes the need to define its features in an official committee-controlled specification document which is criticized by some.

The Spring Framework made previously unfamiliar techniques popular in a short period of time, the most notable example is Inversion of Control. In 2004 the Spring Framework enjoyed high adoption rates and by offering its own aspect-oriented programming (AOP) framework it also helped to make this programming paradigm more popular within the Java community.

2005 saw even higher adoption rates than the previous year thanks to new milestone releases and more features being added. The Spring Forum that was launched at the end of 2004 also helped to increase the framework's popularity and has since grown out to be the most important source of information and help for its users.

In the same year the Spring developers started their own company to offer commercial support and notably started a partnership with BEA [citation needed]. In December 2005 the first Spring conference was held in Miami attracting 300 developers over the course of 3 days, followed by a conference in Antwerp in June 2006, attended by over 400 people.

[edit] Introduction to the Spring Framework

The Spring Framework provides solutions to many technical challenges faced by Java developers and organizations wanting to create applications based on the Java platform. Because of the sheer vastness of the functionality that is offered it can be hard to distinguish the major building blocks the framework is composed of. The Spring Framework is not exclusively linked to the Java Enterprise platform although its far-reaching integration in this area is an important reason for its popularity.

The Spring Framework is probably best known for offering features required to effectively create complex business applications outside of the programming models that historically have been dominant in the industry. Next to that it is also credited for introducing previously unfamiliar functionalities into today's mainstream development practices, even beyond the Java platform.

This amounts to a framework that offers a consistent model and makes it applicable to most application types that are created on top of the Java platform today. The Spring Framework is considered to implement one way of working based on best practices and industry standards and making it available to many domains in Java.

[edit] Modules of the Spring Framework

The Spring Framework can be considered as a collection of smaller frameworks or frameworks-in-the-framework. Most of these frameworks are designed to work independently of each other yet provide better functionalities when used together. These frameworks are divided along the building blocks of typical complex applications:

  • Inversion of Control container: configuration of application components and lifecycle management of Java objects.
  • Aspect-oriented programming framework: working with functionalities that cannot be implemented with Java's object-oriented programming capabilities without making sacrifices.
  • Data access framework: working with relational database management systems on the Java platform using JDBC and Object-relational mapping tools providing solutions to technical challenges that are reusable in a multitude of Java-based environments.
  • Transaction management framework: harmonization of various transaction management API's and configurative transaction management orchestration for Java objects.
  • Model-view-controller framework: HTTP and Servlet based framework providing many hooks for extension and customization.
  • Remote Access framework: configurative RPC-style export and import of Java objects over computer networks supporting HTTP-based protocols, RMI, CORBA and web services (SOAP).
  • Authentication and authorization framework: configurative orchestration of authentication and authorization processes supporting many popular and industry-standard standards, protocols, tools and practices.
  • Remote Management framework: configurative exposure and management of Java objects for local or remote configuration via JMX.
  • Messaging framework: configurative registration of message listener objects for transparent message consumption from message queues via JMS, improvement of message sending over standard JMS API's.
  • Testing framework: support classes for writing unit tests and integration tests.

[edit] Inversion of Control container

Main article: Spring core container

Central in the Spring Framework is its Inversion of Control container that provides a consistent means of configuring and managing Java objects. This container is also known as BeanFactory, ApplicationContext or Core container.

The container has many responsibilities and extension points that can all be considered as forms of Inversion of Control, hence its name. Examples are: creating objects, configuring objects, calling initialization methods and passing objects to registered callback objects. Many of the functionalities of the container together form the object lifecycle which is one of the most important features it provides.

Objects that are created by the container are also called Managed Objects or Beans. Typically the container is configured by loading XML files that contain Bean definitions. These provide all information that is required to create objects. Once objects are created and configured without raising error conditions they become available for usage. Objects can be obtained by means of Dependency lookup or Dependency injection.

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, either via constructors, properties or factory methods.

In many cases it's not required to use the container when using other parts of the Spring Framework although using it will likely make 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 [citation needed].

The container can be turned in a partially-compliant EJB3 container by means of the Pitchfork project. This project by itself however does not make the container fully compliant with the EJB3 specifications. The Spring Framework is criticized by some as not being standards compliant. Interface21 doesn't see EJB3 compliance as a major goal and claims the Spring Framework and the container allow for more powerful programming models[1].

[edit] Aspect-oriented programming framework

Main article: Spring AOP framework

The Spring Framework has its own AOP framework that modularizes cross-cutting concerns in aspects. The motivations 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 versatile and flexible Spring Container to ease configuration and add features.

The Spring AOP framework is interception-based and configured at runtime. This removes the need for a special compilation step or load-time weaving. On the other hand interception only allows for public or protected method executions on existing object as join point. The trade-off between simplicity and available features is an important one as Spring AOP is reasonably powerful yet remains reasonably easy to learn.

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 has more integration with AspectJ, for example the pointcut language is reused.

Spring AOP has been designed to make it reasonably easy to work with cross-cutting concerns inside the Spring Framework. Any object that's 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.

[edit] Data access framework

Main article: Spring data access framework

The data access framework that's part of Spring addresses common difficulties developers face when working with databases in applications. Support is provided for all popular data access frameworks in Java: JDBC [1], iBatis [2], Hibernate [3], JDO [4], JPA [5], Oracle TopLink, Apache OJB [6] and Cayenne [7] amongst others.

For all 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 say these Template classes are intrusive and offer no advantage over using for example the Hibernate API directly [8]. In response the Spring developers have made it possible to directly use the Hibernate and JPA APIs. This however requires transparent transaction management as application code no longer assumes the responsibility to obtain and close database resources and doesn't 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 are 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.

[edit] Transaction management framework

Main article: Spring transaction management framework

Spring's transaction management framework brings an abstraction mechanism to the Java platform that has never been attempted before. Its abstraction is capable of:

Compare with JTA which 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 5 annotations

Together with Spring's data access framework - which integrates the transaction management framework - it's possible to setup up a transactional system through configuration without having to rely on JTA or EJB. The transactional framework also integrates with messaging and caching engines.

[edit] Model-view-controller framework

Main article: Spring MVC framework

The Spring Framework features its own MVC framework which wasn't originally planned. The Spring developers decided to write their own web framework as a reaction to the poor design of the popular Jakarta Struts web framework [citation needed].

Spring MVC is a request-based framework comparable to Struts in this respect. The framework defines strategy interfaces for all responsibilities that have to be handled by a modern request-based framework. The responsibility of each interface is sufficiently simple and clear that it's easy for Spring MVC users to write their own implementations if they choose to. All interfaces are tightly coupled to the Servlet API to offer the full power of this 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 [9] of the framework and is responsible for delegating control to the various interfaces during the execution phases of a HTTP request.

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

  • HandlerMapping: selecting objects that handle incoming requests (handlers) based on any attribute or condition internal or external to those requests
  • HandlerAdapter: execution of objects that handle incoming requests
  • Controller: comes between Model and View to manages incoming requests and redirect to proper response.
  • View: responsible for returning a response to the client
  • ViewResolver: selecting a View based on a logical name for the view (use is not strictly required)
  • HandlerInterceptor: interception of incoming requests comparable but not equal to Servlet filters (use is optional and not controlled by DispatcherServlet).
  • LocaleResolver: resolving and optionally saving of the locale of an individual user
  • MultipartResolver: facilitate working with file uploads by wrapping incoming requests

Each strategy interface above has an important responsibility in the overall framework. The abstractions offered by these interfaces is sufficiently powerful to allow for a wide set of variations in their implementations. Spring MVC ships with implementations of all these interfaces and together offer a powerful 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 is 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, applications can use other parts of the Spring Framework - including the container - and choose not to use Spring MVC.

Because Spring MVC uses the Spring container for configuration and assembly web-based applications can take full advantage of the Inversion of Control features offered by the container.

[edit] Remote access framework

Main article: Spring 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 exporting 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.

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

  • HTTP-based protocols
    • Hessian: binary serialization protocol, open-sourced and maintained by Caucho
    • Burlap: XML-based serialization protocol, open-sourced and maintained by Caucho
    • HttpInvoker: Java serialization over HTTP, specific for Spring
  • RMI/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

The XFire SOAP framework 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.

[edit] Authentication and authorization framework

Main article: Acegi security framework (Java)

[edit] Remote management framework

Main article: Spring JMX framework

[edit] References

  • Johnson, Rod, Jürgen Höller, Alef Arendsen, Thomas Risberg, and Colin Sampaleanu (2005). Professional Java Development with the Spring Framework. Wiley. ISBN 0-7645-7483-3.
  • Harrop, Rob, Jan Machahek (2005). Pro Spring. APress. ISBN 1-59059-461-4.
  • Johnson, Rod, Jürgen Höller (2004). J2EE Development without EJB. Wiley. ISBN 0-7645-5831-5.
  • Johnson, Rod (2002). Expert One-on-on J2EE Design and Development. Wiley. ISBN 0-7645-4385-7.
  • Wolff, Eberhard (2006). Spring - Framework für die Java Entwicklung. dpunkt. ISBN 3-89864-365-4.
In other languages