- download the latest spring framework from http://www.springsource.org/download and unzip
- build the source from C:\springsource\spring-framework-3.0.5.RELEASE\projects\build-spring-framework with ant
- download eclipse or springsource sts from http://www.springsource.com/developer/sts
- import projects under C:\springsource\spring-framework-3.0.5.RELEASE\projects into springsource sts
- reference html and PDF can be build from project spring-framework-reference
- sample code is located at https://anonsvn.springframework.org/svn/spring-samples/
singleton Scopes the bean definition to a single instance per Spring container (default). prototype Allows a bean to be instantiated any number of times (once per use). request Scopes a bean definition to an HTTP request. Only valid when used with a web capable Spring context (such as with Spring MVC). session Scopes a bean definition to an HTTP session. Only valid when used with a webcapableSpring context (such as with Spring MVC). global-session Scopes a bean definition to a global HTTP session. Only valid when used in a portlet context.
Comments
Post a Comment