接口 ProxyConfiguration
-
public interface ProxyConfigurationA proxy configuration allows the definition of an interceptor object that decides on the behavior of a proxy. This interface is meant for internal use but is in a public package in order to provide code generation.While this interface depends on Byte Buddy types, this is only true for annotation types which are silently suppressed by the runtime if they are not available on a class loader. This allows using this interceptor and configuration with for example OSGi without any export of Byte Buddy when using Hibernate.
-
-
嵌套类概要
嵌套类 修饰符和类型 接口 说明 static interfaceProxyConfiguration.InterceptorAn interceptor object that is responsible for invoking a proxy's method.static classProxyConfiguration.InterceptorDispatcherA static interceptor that guards against method calls before the interceptor is set.
-
字段概要
字段 修饰符和类型 字段 说明 static StringINTERCEPTOR_FIELD_NAMEThe canonical field name for an interceptor object stored in a proxied object.
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 void$$_hibernate_set_interceptor(ProxyConfiguration.Interceptor interceptor)Defines an interceptor object that specifies the behavior of the proxy object.
-
-
-
方法详细资料
-
$$_hibernate_set_interceptor
void $$_hibernate_set_interceptor(ProxyConfiguration.Interceptor interceptor)
Defines an interceptor object that specifies the behavior of the proxy object.- 参数:
interceptor- The interceptor object.
-
-