Class AnnotProxyFieldValueFactory
- java.lang.Object
-
- org.apache.wicket.spring.injection.annot.AnnotProxyFieldValueFactory
-
- All Implemented Interfaces:
org.apache.wicket.injection.IFieldValueFactory
public class AnnotProxyFieldValueFactory extends Object implements org.apache.wicket.injection.IFieldValueFactory
IFieldValueFactorythat usesLazyInitProxyFactoryto create proxies for Spring dependencies based on theSpringBeanannotation applied to a field. This class is usually used by theSpringComponentInjectorto inject objects with lazy init proxies. However, this class can be used on its own to create proxies for any field decorated with aSpringBeanannotation.Example:
IFieldValueFactory factory = new AnnotProxyFieldValueFactory(contextLocator); field = obj.getClass().getDeclaredField("dependency"); IDependency dependency = (IDependency)factory.getFieldValue(field, obj);In the example above thedependencyobject returned is a lazy init proxy that will look up the actual IDependency bean from spring context upon first access to one of the methods.This class will also cache any produced proxies so that the same proxy is always returned for the same spring dependency. This helps cut down on session size beacause proxies for the same dependency will not be serialized twice.
- Author:
- Igor Vaynberg (ivaynberg), Istvan Devai, Tobias Soloschenko
- See Also:
LazyInitProxyFactory,SpringBean,SpringBeanLocator,Inject
-
-
Constructor Summary
Constructors Constructor Description AnnotProxyFieldValueFactory(ISpringContextLocator contextLocator)AnnotProxyFieldValueFactory(ISpringContextLocator contextLocator, boolean wrapInProxies)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.springframework.beans.factory.config.BeanDefinitiongetBeanDefinition(org.springframework.beans.factory.config.ConfigurableListableBeanFactory beanFactory, String name)ObjectgetFieldValue(Field field, Object fieldOwner)booleansupportsField(Field field)
-
-
-
Constructor Detail
-
AnnotProxyFieldValueFactory
public AnnotProxyFieldValueFactory(ISpringContextLocator contextLocator)
- Parameters:
contextLocator- spring context locator
-
AnnotProxyFieldValueFactory
public AnnotProxyFieldValueFactory(ISpringContextLocator contextLocator, boolean wrapInProxies)
- Parameters:
contextLocator- spring context locatorwrapInProxies- whether or not wicket should wrap dependencies with specialized proxies that can be safely serialized. in most cases this should be set to true.
-
-
Method Detail
-
getFieldValue
public Object getFieldValue(Field field, Object fieldOwner)
- Specified by:
getFieldValuein interfaceorg.apache.wicket.injection.IFieldValueFactory
-
getBeanDefinition
public org.springframework.beans.factory.config.BeanDefinition getBeanDefinition(org.springframework.beans.factory.config.ConfigurableListableBeanFactory beanFactory, String name)
-
supportsField
public boolean supportsField(Field field)
- Specified by:
supportsFieldin interfaceorg.apache.wicket.injection.IFieldValueFactory
-
-