spring features

来源:互联网 发布:linux apache下载64位 编辑:程序博客网 时间:2024/05/01 07:39

 http://www.springsource.org/features

Modern Web

Complete support for modern applications including REST, HTML 5, conversations and AJAX.
See more...

Data Access

Supports traditional RDBMS as well as new NoSQL solutions, map-reduce frameworks and cloud based data services.
See more...

Integration

Enterprise orchestration and adapters for distributed applications, asynchronous message-based applications, and batch applications.
See more...

Mobile

Web support for mobile client platforms including Android and iPhone.
See more...

Social

Integration with Facebook, Twitter, LinkedIn, TripIt and other prominent social networks.
See more...

Security

Authorization control for all tiers and authentication integration to dozens of providers.
See more...

Cloud Ready

Spring applications are supported on all popular cloud platforms like Cloud Foundry, Google App Engine and Amazon EC2.
See more...

 

 

Samples

Spring Framework Samples

Spring is a layered Java application platform for building enterprise solutions and is based on code published in the bookExpert One-on-One J2EE Design and Development by Rod Johnson. Go to...

 

Spring Security Samples

Spring Security is a powerful and highly customizable authentication and access-control framework that works efficiently in Spring applications with just a few lines of configuration.Go to...

 

Spring Roo Samples

Spring Roo is a next-generation rapid application development tool for Java developers. With Roo you can easily build in minutes full Java applications including data access, search and rich web interactions.Go to...

Spring Mobile Samples

Spring Mobile is an extension to Spring MVC that aims to simplify the development of mobile web applications including intelligent device detection and progressive rendering options. Go to...

 

Spring Data - MongoDB Example

Spring Data makes it easier to build Spring-powered applications that use new data access technologies like MongoDB, Neo4J, Redis, and other noSQL data stores. Go to...

 

Spring Web Services Samples

Spring Web Services focuses on creating document-driven Web services using a contract-first SOAP service development approach.Go to...

Spring Batch Samples

Spring Batch is a lightweight, comprehensive batch framework designed to simplify and optimize the work of processing high volume batch operations.Go to...

 

Spring Integration Samples

Spring Integration extends Spring to support the well-known Enterprise Integration Patterns via lightweight messaging within Spring-based applications and supports integration with external systems via declarative adapters.Go to...

 

Spring AMQP Samples

Spring AMQP applies core Spring concepts to the development of AMQP-based messaging solutions including abstractions for sending, receiving and configuring AMQP messages.Go to...

Spring Social Samples

Spring Social is an extension of the Spring Framework that allows you to connect your applications with Software-as-a-Service (SaaS) providers such as Facebook and Twitter. Go to...

 

Spring Web Flow Samples

Spring Web Flow focuses on providing the infrastructure for building and running rich web applications that require multi-step interactions.Go to...

 

Spring BlazeDS Integration

Spring BlazeDS Integration makes it easier to build Spring-powered Rich Internet Applications using Adobe Flex as the front-end client.Go to...

More Samples

  • Spring Data Graph Examples
  • Spring Key Value Examples
  • Spring Data JPA Examples
 
  • Spring Data Document Examples
  • Cloud Foundry Samples
  • Spring AMQP for .NET Samples
 
  • Spring .NET Examples
  • Spring Android Samples

 

Spring Framework

From Wikipedia, the free encyclopedia
Jump to: navigation, search
Spring FrameworkSpring Framework.pngDeveloper(s)Spring SourceStable release3.1.1 / February 17, 2012; 23 days ago (2012-02-17)Development statusActiveWritten inJavaOperating systemCross-platformPlatformJava Virtual MachineTypeApplication frameworkLicenseApache License 2.0Websitewww.springsource.org

The Spring Framework is an open source application framework and Inversion of Control container for the Java platform.[1]

The first version was written by Rod Johnson, who released the framework with the publication of his bookExpert One-on-One J2EE Design and Development in October 2002. The framework was first released under theApache 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, and Spring 3.1 in December 2011. The current version is 3.1.0.[4]

The core features of the Spring Framework can be used by any Java application, but there are extensions for building web applications on top of theJava EE platform. Although the Spring 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 theEnterprise JavaBean (EJB) model.

Contents

 [hide] 
  • 1Modules
    • 1.1Inversion of Control container (Dependency injection)
    • 1.2Aspect-oriented programming framework
    • 1.3Data access framework
    • 1.4Transaction management framework
    • 1.5Model-view-controller framework
    • 1.6Remote access framework
    • 1.7Convention-Over-Configuration Rapid Application Development
    • 1.8Batch Framework
    • 1.9Integration Framework
  • 2References
  • 3Bibliography
  • 4See also
  • 5External links

[edit]Modules

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

  • Inversion of Control container: configuration of application components and lifecycle management of Java objects, done mainly via Dependency Injection
  • Aspect-oriented programming: enables implementation of cross-cutting routines
  • Data access: working withrelational database management systems on the Java platform usingJDBC andobject-relational mapping tools and with NoSQL databases
  • Transaction management: unifies several transaction management APIs and coordinates transactions for Java objects
  • Model-view-controller: anHTTP- andservlet-based framework providing hooks for extension and customization for web applications andRESTful web services.
  • Remote Access framework: configurative RPC-style export and import of Java objects over networks supporting RMI, CORBA and HTTP-based protocols including web services (SOAP)
  • Convention-over-configuration: a rapid application development solution for Spring-based enterprise applications is offered in the Spring Roo module
  • Batch processing: a framework for high-volume processing featuring reusable functions including logging/tracing, transaction management, job processing statistics, job restart, skip, and resource management
  • Authentication andauthorization: configurable security processes that support a range of standards, protocols, tools and practices via theSpring Security sub-project (formerly Acegi Security System for Spring).
  • Remote Management: configurative exposure and management of Java objects for local or remote configuration viaJMX
  • Messaging: configurative registration of message listener objects for transparent message-consumption frommessage queues viaJMS, improvement of message sending over standard JMS APIs
  • Testing: support classes for writing unit tests and integration tests

[edit]Inversion of Control container (Dependency injection)

Central to the Spring Framework is its Inversion of Control container, which provides a consistent means of configuring and managing Java objects usingreflection. The container is responsible for managing object lifecycles: creating objects, calling initialization methods, and configuring objects by wiring them together.

Objects created by the container are also called Managed Objects or Beans. Typically, the container is configured by loading XML files containingBean definitions which provide the information required to create the beans.

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, via eitherconstructors, 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 EJB3 container by means of the Pitchfork project. Some[who?] criticize the Spring Framework for not complying with standards.[5] However,SpringSource doesn't see EJB3 compliance as a major goal, and claims that the Spring Framework and the container allow for more powerful programming models.[6]

[edit]Aspect-oriented programming framework

The Spring Framework has its own AOP framework which 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 interception 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 ajoin point.

Compared to the AspectJ framework, Spring AOP is less powerful but also less complicated. Spring 1.2 includes support to configure AspectJaspects in the container. Spring 2.0 added more integration with AspectJ; for example, thepointcut language is reused and can be mixed with SpAOP-based aspects. Further, Spring 2.0 added a Spring Aspects library which 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 for 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 beenriched using Spring AOP.

The Spring Framework uses Spring AOP internally for transaction management, security, remote access, andJMX.

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

  • schema-based approach.
  • @AspectJ-based annotation style.

The Spring team decided not to introduce new AOP-related terminology; therefore, in the Spring reference documentation and API, terms such asaspect, join point, advice, pointcut, introduction,target object (advised object),AOP proxy, and weaving all have the same meanings as in most other AOP frameworks (particularlyAspectJ).

[edit]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 say theseTemplate classes are intrusive and offer no advantage over using (for example) theHibernate API directly.[7][not in citation given] In response, the Spring developers have made it possible to use the Hibernate andJPA 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 which 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

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

Other configurations

  • AOP configuration of cutting points using <aop:config>
  • Transaction semantics of AOP advice using <tx:advice>

[edit]Transaction management framework

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

  • working with local and global transactions (local transaction does not require an application server)
  • working with nested transactions
  • working with transaction safepoints
  • working in almost all environments of the Java platform

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 5 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 onJTA or EJB. The transactional framework also integrates with messaging and caching engines.

[edit]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) popularJakarta Struts web framework[8], 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.[9]

Like Struts, Spring MVC is a request-based framework. The framework defines strategy interfaces for all of the responsibilities which 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 theServlet API. This tight coupling to theServlet 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[10] 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 which handle incoming requests (handlers) based on any attribute or condition internal or external to those requests
  • HandlerAdapter: execution of objects which handle incoming requests
  • 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.
  • View: responsible for returning a response to the client. It is possible to go straight to view without going to the model part. It is also possible to go through all three.
  • ViewResolver: selecting aView based on a logical name for the view (use is not strictly required)
  • HandlerInterceptor: interception of incoming requests comparable but not equal toServlet filters (use is optional and not controlled byDispatcherServlet).
  • LocaleResolver: resolving and optionally saving of thelocale 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 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 Javajava.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.

[edit]Remote access framework

Spring's Remote Access framework is an abstraction for working with various RPC-based technologies available on theJava 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 combiningInversion of Control and AOP.

The framework also provides fault-recovery (automatic reconnection after connection failure) and some optimizations for client-side use ofEJB 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 byCORBA-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 theApache Axis support) is configured in the Spring Core container.

There is alternative open-source implementation (Cluster4Spring) of a remoting subsystem included into Spring Framework which is intended to support various schemes of remoting (1-1, 1-many, dynamic services discovering).

[edit]Convention-Over-Configuration Rapid Application Development

Spring Roo is Spring'sConvention-over-configuration solution for rapidly building applications in Java. It currently supports Spring Framework, Spring Security and Spring Web Flow, with remaining Spring projects scheduled to be added in due course. Roo differs from otherrapid application development frameworks by focusing on:

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

[edit]Batch Framework

Spring Batch is a framework forbatch 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.

[edit]Integration Framework

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

  • routers
  • transformers
  • adapters to integrate with other technologies and systems (HTTP,AMQP,JMS, XMPP, SMTP, IMAP, FTP (as well as FTPS/SFTP), file systems, etc.)
  • filters
  • service activators
  • management and auditing

Spring Integration supports pipe-and-filter based architectures.

[edit]References

  1. ^Spring.NET Application Framework
  2. ^Jolt winners 2006
  3. ^JAX Innovation Award Gewinner 2006
  4. ^Spring Framework 3.1 goes GA
  5. ^http://www.andygibson.net/blog/index.php/2008/08/28/is-spring-between-the-devil-and-the-ejb Spring VS EJB3
  6. ^"Pitchfork FAQ".http://www.springsource.com/web/guest/pitchfork/pitchfork-faq. Retrieved 2006-06-06. 
  7. ^http://houseofhaug.wordpress.com/2005/08/12/hibernate-hates-spring Hibernate VS Spring
  8. ^Introduction to the Spring Framework
  9. ^Johnson, Expert One-on-One J2EE Design and Development, Ch. 12. et al.
  10. ^Patterns of Enterprise Application Architecture: Front Controller

[edit]Bibliography

  • Mak, Gary (September 1, 2010). Spring Recipes: A Problem-Solution Approach (Second ed.).Apress. pp. 1104.ISBN 1430224991. 
  • Walls, Craig (November 28, 2010). Spring in Action (Third ed.).Manning. pp. 700.ISBN 1935182358. 
  • Walls, Craig; Breidenbach, Ryan (August 16, 2007).Spring in Action (Second ed.). Manning. pp. 650. ISBN 1933988134. 
  • Johnson, Rod; Höller, Jürgen; Arendsen, Alef; Risberg, Thomas; Sampaleanu, Colin (July 8, 2005).Professional Java Development with the Spring Framework (First ed.).Wrox Press. pp. 672.ISBN 0764574833.http://eu.wiley.com/WileyCDA/WileyTitle/productCd-0764574833.html. 
  • Harrop, Rob; Machacek, Jan (January 31, 2005). Pro Spring (First ed.). Apress. pp. 832. ISBN 1590594614.http://www.apress.com/book/view/1590594614. 
  • Johnson, Rod; Jürgen, Höller (October 23, 2002). J2EE Development without EJB (First ed.). Wrox Press. pp. 768. ISBN 0764558315.http://eu.wiley.com/WileyCDA/WileyTitle/productCd-0764558315.html. 
  • Johnson, Rod (October 2002). Expert One-on-one J2EE Design and Development (First ed.). Wrox Press. pp. 750. ISBN 0764543857.http://www.wrox.com/WileyCDA/WroxTitle/productCd-0764543857.html. 

[edit]See also

  • Google Guice
  • Apache HiveMind
  • Spring Web Flow

[edit]External links

Portal iconFree software portal
The Wikibook Java Programming has a page on the topic of
Spring framework
  • Spring Framework
  • Spring ActionScript
  • Spring Batch
  • The Spring Framework - Reference Documentation
  • Spring: The art of using GRASP Patterns
  • Blossom: Spring Framework integration module for Magnolia CMS