About

Spring MVC is an action-based (as opposed to component-based) web framework built on top of the Spring IOC Container. MVC stands for Model View Controller, a long standing design pattern that layers an application separating presentation concerns from business logic see Portland Pattern Repository's MVC Entry

The current version is 3.1.x, as of February 2012, and the current docs can be found in the MVC section of the Spring Reference.

In Spring 2.5, Annotated Controllers were introduced, replacing the previous interface-based mechanism. Although not formally deprecated, the interface-based controller mechanism is considered outdated and is not even mentioned in the current documentation (although a misleading link exists).

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 with relational database management systems on the Java platform using JDBC and object-relational mapping tools and with NoSQL databases
  • Transaction management: unifies several transaction management APIs and coordinates transactions for Java objects
  • Model-view-controller: an HTTP- and servlet-based framework providing hooks for extension and customization for web applications and RESTful 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 and authorization: configurable security processes that support a range of standards, protocols, tools and practices via the Spring Security sub-project (formerly - Acegi Security System for Spring).
  • Remote Management: configurative exposure and management of Java objects for local or remote configuration via JMX
  • Messaging: configurative registration of message listener objects for transparent message-consumption from message queues via JMS, improvement of message sending over - - standard JMS APIs
  • Testing: support classes for writing unit tests and integration tests
history|show excerpt|excerpt history