org.springframework.beans.factory.support

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » J2EE » spring framework 2.5 » org.springframework.beans.factory.support 
org.springframework.beans.factory.support
Classes supporting the org.springframework.beans.factory package. Contains abstract base classes for BeanFactory implementations.
Java Source File NameTypeComment
AbstractAutowireCapableBeanFactory.javaClass Abstract bean factory superclass that implements default bean creation, with the full capabilities specified by the RootBeanDefinition class. Implements the org.springframework.beans.factory.config.AutowireCapableBeanFactory interface in addition to AbstractBeanFactory's AbstractAutowireCapableBeanFactory.createBean method.

Provides bean creation (with constructor resolution), property population, wiring (including autowiring), and initialization.

AbstractBeanDefinition.javaClass Base class for concrete, full-fledged org.springframework.beans.factory.config.BeanDefinition classes, factoring out common properties of RootBeanDefinition and ChildBeanDefinition .
AbstractBeanDefinitionReader.javaClass Abstract base class for bean definition readers which implement the BeanDefinitionReader interface.
AbstractBeanFactory.javaClass Abstract base class for org.springframework.beans.factory.BeanFactory implementations, providing the full capabilities of the org.springframework.beans.factory.config.ConfigurableBeanFactory SPI. Does not assume a listable bean factory: can therefore also be used as base class for bean factory implementations which obtain bean definitions from some backend resource (where bean definition access is an expensive operation).

This class provides a singleton cache (through its base class org.springframework.beans.factory.support.DefaultSingletonBeanRegistry , singleton/prototype determination, org.springframework.beans.factory.FactoryBean handling, aliases, bean definition merging for child bean definitions, and bean destruction ( org.springframework.beans.factory.DisposableBean interface, custom destroy methods).

AutowireCandidateQualifier.javaClass Qualifier for resolving autowire candidates.
AutowireCandidateResolver.javaInterface Strategy interface for determining whether a specific bean definition qualifies as an autowire candidate for a specific dependency.
AutowireUtils.javaClass Utility class that contains various methods useful for the implementation of autowire-capable bean factories.
BeanDefinitionBuilder.javaClass Programmatic means of constructing org.springframework.beans.factory.config.BeanDefinition BeanDefinitions using the builder pattern.
BeanDefinitionDefaults.javaClass A simple holder for BeanDefinition property defaults.
BeanDefinitionReader.javaInterface Simple interface for bean definition readers. Specifies load methods with Resource parameters.

Concrete bean definition readers can of course add additional load and register methods for bean definitions, specific to their bean definition format.

Note that a bean definition reader does not have to implement this interface.

BeanDefinitionReaderUtils.javaClass Utility methods that are useful for bean definition reader implementations.
BeanDefinitionRegistry.javaInterface Interface for registries that hold bean definitions, for example RootBeanDefinition and ChildBeanDefinition instances.
BeanDefinitionValidationException.javaClass Exception thrown when the validation of a bean definition failed.
BeanDefinitionValueResolver.javaClass Helper class for use in bean factory implementations, resolving values contained in bean definition objects into the actual values applied to the target bean instance.
BeanNameGenerator.javaInterface Strategy interface for generating bean names for bean definitions.
CglibSubclassingInstantiationStrategy.javaClass Default object instantiation strategy for use in BeanFactories.
ChildBeanDefinition.javaClass Bean definition for beans which inherit settings from their parent. Child bean definitions have a fixed dependency on a parent bean definition.

A child bean definition will inherit constructor argument values, property values and method overrides from the parent, with the option to add new values.

ConstructorResolver.javaClass Helper class for resolving constructors and factory methods.
DefaultBeanNameGenerator.javaClass Default implementation of the BeanNameGenerator interface, delegating to BeanDefinitionReaderUtils.generateBeanName(BeanDefinitionBeanDefinitionRegistry) .
DefaultListableBeanFactory.javaClass Default implementation of the org.springframework.beans.factory.ListableBeanFactory and BeanDefinitionRegistry interfaces: a full-fledged bean factory based on bean definition objects.

Typical usage is registering all bean definitions first (possibly read from a bean definition file), before accessing beans.

DefaultSingletonBeanRegistry.javaClass Generic registry for shared bean instances, implementing the org.springframework.beans.factory.config.SingletonBeanRegistry . Allows for registering singleton instances that should be shared for all callers of the registry, to be obtained via bean name.

Also supports registration of org.springframework.beans.factory.DisposableBean instances, (which might or might not correspond to registered singletons), to be destroyed on shutdown of the registry.

DisposableBeanAdapter.javaClass
GenericBeanDefinition.javaClass GenericBeanDefinition is a one-stop shop for standard bean definition purposes. Like any bean definition, it allows for specifying a class plus optionally constructor argument values and property values.
InstantiationStrategy.javaInterface Interface responsible for creating instances corresponding to a root bean definition.
LookupOverride.javaClass Represents an override of a method that looks up an object in the same IoC context.
ManagedList.javaClass Tag collection class used to hold managed List elements, which may include runtime bean references (to be resolved into bean objects).
ManagedMap.javaClass Tag collection class used to hold managed Map values, which may include runtime bean references (to be resolved into bean objects).
ManagedProperties.javaClass Tag class which represents a Spring-managed Properties instance that supports merging of parent/child definitions.
ManagedSet.javaClass Tag collection class used to hold managed Set values, which may include runtime bean references (to be resolved into bean objects).
MergedBeanDefinitionPostProcessor.javaInterface Post-processor callback interface for merged bean definitions at runtime. BeanPostProcessor implementations may implement this sub-interface in order to post-process the merged bean definition that the Spring BeanFactory uses to create a specific bean instance.

Note that the MergedBeanDefinitionPostProcessor.postProcessMergedBeanDefinition method will be invoked for every instance of a bean.

MethodOverride.javaClass Object representing the override of a method on a managed object by the IoC container.
MethodOverrides.javaClass Set of method overrides, determining which, if any, methods on a managed object the Spring IoC container will override at runtime.
MethodReplacer.javaInterface Interface to be implemented by classes that can reimplement any method on an IoC-managed object: the Method Injection form of Dependency Injection.
PropertiesBeanDefinitionReader.javaClass Bean definition reader for a simple properties format.

Provides bean definition registration methods for Map/Properties and ResourceBundle.

ReplaceOverride.javaClass Extension of MethodOverride that represents an arbitrary override of a method by the IoC container.
RootBeanDefinition.javaClass A root bean definition represents the merged bean definition that backs a specific bean in a Spring BeanFactory at runtime.
SimpleAutowireCandidateResolver.javaClassAutowireCandidateResolver implementation to use when Java version is less than 1.5 and therefore no annotation support is available.
SimpleInstantiationStrategy.javaClass Simple object instantiation strategy for use in a BeanFactory.
StaticListableBeanFactory.javaClass Static org.springframework.beans.factory.BeanFactory implementation which allows to register existing singleton instances programmatically.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.