Spring

From Wiki RB4
Revision as of 22:43, 11 February 2008 by UweHeuer (talk | contribs) (→‎2.5)

Introduction

Spring is an open-source application framework, introduced and developed in 2004. The main ideas were suggested by an experienced J2EE architect, Rod Johnson. Just as Hibernate attacks CMP as primitive ORM technology, Spring attacks EJB as unduly complicated and not susceptible to unit-testing. Instead of EJB, Spring suggests that we make use of ordinary Java beans, with some slight modifications, to get all the supposed advantages of EJB environment. Thus, Spring is posed as an alternative to EJB essentially. However, as a concession to the existing EJB investments, Spring is designed to operate with EJB if required.

Versions

Version 2.5

s. http://steelheart.kr/tc/163

Installation

  1. Downloaded spring-framework-2.5.1-with-dependencies.zip and spring-framework-2.5.1.zip (for a description s. readme.txt).

Structure

The directory 'dist' contains the Spring binary jar file spring.jar. The subdirectory 'modules' contains the module-specific jar files.

spring.jar

Convient jar file with all standard modules except the test and MVC support.

Projects

  • springtest1

Literature