Class ProxyProcessorSupport
- All Implemented Interfaces:
Serializable
,AopInfrastructureBean
,Aware
,BeanClassLoaderAware
,Ordered
- Direct Known Subclasses:
AbstractAdvisingBeanPostProcessor
,AbstractAutoProxyCreator
evaluateProxyInterfaces(java.lang.Class<?>, org.springframework.aop.framework.ProxyFactory)
algorithm.- Since:
- 4.1
- Author:
- Juergen Hoeller
- See Also:
-
Field Summary
Fields inherited from interface org.springframework.core.Ordered
HIGHEST_PRECEDENCE, LOWEST_PRECEDENCE
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprotected void
evaluateProxyInterfaces
(Class<?> beanClass, ProxyFactory proxyFactory) Check the interfaces on the given bean class and apply them to theProxyFactory
, if appropriate.int
getOrder()
Get the order value of this object.protected ClassLoader
Return the configured proxy ClassLoader for this processor.protected boolean
Determine whether the given interface is just a container callback and therefore not to be considered as a reasonable proxy interface.protected boolean
isInternalLanguageInterface
(Class<?> ifc) Determine whether the given interface is a well-known internal language interface and therefore not to be considered as a reasonable proxy interface.void
setBeanClassLoader
(ClassLoader classLoader) Callback that supplies the beanclass loader
to a bean instance.void
setOrder
(int order) Set the ordering which will apply to this processor's implementation ofOrdered
, used when applying multiple processors.void
setProxyClassLoader
(ClassLoader classLoader) Set the ClassLoader to generate the proxy class in.Methods inherited from class org.springframework.aop.framework.ProxyConfig
copyFrom, isExposeProxy, isFrozen, isOpaque, isOptimize, isProxyTargetClass, setExposeProxy, setFrozen, setOpaque, setOptimize, setProxyTargetClass, toString
-
Constructor Details
-
ProxyProcessorSupport
public ProxyProcessorSupport()
-
-
Method Details
-
setOrder
public void setOrder(int order) Set the ordering which will apply to this processor's implementation ofOrdered
, used when applying multiple processors.The default value is
Ordered.LOWEST_PRECEDENCE
, meaning non-ordered.- Parameters:
order
- the ordering value
-
getOrder
public int getOrder()Description copied from interface:Ordered
Get the order value of this object.Higher values are interpreted as lower priority. As a consequence, the object with the lowest value has the highest priority (somewhat analogous to Servlet
load-on-startup
values).Same order values will result in arbitrary sort positions for the affected objects.
-
setProxyClassLoader
Set the ClassLoader to generate the proxy class in.Default is the bean ClassLoader, i.e. the ClassLoader used by the containing
BeanFactory
for loading all bean classes. This can be overridden here for specific proxies. -
getProxyClassLoader
Return the configured proxy ClassLoader for this processor. -
setBeanClassLoader
Description copied from interface:BeanClassLoaderAware
Callback that supplies the beanclass loader
to a bean instance.Invoked after the population of normal bean properties but before an initialization callback such as
InitializingBean's
InitializingBean.afterPropertiesSet()
method or a custom init-method.- Specified by:
setBeanClassLoader
in interfaceBeanClassLoaderAware
- Parameters:
classLoader
- the owning class loader
-
evaluateProxyInterfaces
Check the interfaces on the given bean class and apply them to theProxyFactory
, if appropriate.Calls
isConfigurationCallbackInterface(java.lang.Class<?>)
andisInternalLanguageInterface(java.lang.Class<?>)
to filter for reasonable proxy interfaces, falling back to a target-class proxy otherwise.- Parameters:
beanClass
- the class of the beanproxyFactory
- the ProxyFactory for the bean
-
isConfigurationCallbackInterface
Determine whether the given interface is just a container callback and therefore not to be considered as a reasonable proxy interface.If no reasonable proxy interface is found for a given bean, it will get proxied with its full target class, assuming that as the user's intention.
- Parameters:
ifc
- the interface to check- Returns:
- whether the given interface is just a container callback
-
isInternalLanguageInterface
Determine whether the given interface is a well-known internal language interface and therefore not to be considered as a reasonable proxy interface.If no reasonable proxy interface is found for a given bean, it will get proxied with its full target class, assuming that as the user's intention.
- Parameters:
ifc
- the interface to check- Returns:
- whether the given interface is an internal language interface
-