Spring is a complete j2ee framework having following features
1. Spring Core:
Most basic part of framework that provides IOC and dependency injection features .The most basic part is BeanFactory which provides a sophisticated implementation of the factory pattern which allows programmer to decouple the configuration and specification of dependencies from actual program logic.
2. Spring Context Package:
The package, which provides a way to access objects in a framework-style manner similar to JNDI naming Concept.
3. Spring DAO package:
This Package provides a JDBC-abstraction layer that removes the need to write JDBC coding and parsing database-vendor specific error codes.
4. Spring ORM package:
This Package provides integration layers for popular object-relational mapping. APIs, like JDO, Hibernate etc. Using the ORM package you can use all those O/R-mappers in combination with all the other features Spring offers, such as the simple declarative transaction management feature.
5. Spring AOP Package:
This is a aspect-oriented programming implementation which allows to define method-interceptors and point cuts to decouple code implementing functionality that should logically be separated.
6. Spring's Web package:
This package provides basic web-oriented integration features, like multipart file-upload functionality or initialization of the IoC container using servlet listeners and a web-oriented application context. When using Spring together with Struts or any other web framework, this is the package to integrate with.
7. Spring's MVC package:
This package provides a Model-View-Controller (MVC) implementation for web-applications. Spring's MVC framework is different from other implementations as it provides a clean separation between model code and web forms, and allows you to use all the other features of the Spring Framework.
Comments
Post a Comment