接口的使用
org.hibernate.property.access.spi.PropertyAccess
-
使用PropertyAccess的程序包 程序包 说明 org.hibernate.property.access.internal org.hibernate.property.access.spi Defines strategies for accessing the persistent properties of an entity or composite. -
-
org.hibernate.property.access.internal中PropertyAccess的使用
实现PropertyAccess的org.hibernate.property.access.internal中的类 修饰符和类型 类 说明 classPropertyAccessBasicImplPropertyAccessor for accessing the wrapped property via get/set pair, which may be nonpublic.classPropertyAccessEmbeddedImplPropertyAccess for handling non-aggregated composites.classPropertyAccessEnhancedImplA PropertyAccess for byte code enhanced entities.classPropertyAccessFieldImplclassPropertyAccessMapImplPropertyAccess implementation that deal with an underlying Map as the container usingMap.get(java.lang.Object)andMap.put(K, V)classPropertyAccessMixedImplA PropertyAccess based on mix of getter/setter method and/or field.返回PropertyAccess的org.hibernate.property.access.internal中的方法 修饰符和类型 方法 说明 PropertyAccessPropertyAccessStrategyBackRefImpl. buildPropertyAccess(Class containerJavaType, String propertyName)PropertyAccessPropertyAccessStrategyBasicImpl. buildPropertyAccess(Class containerJavaType, String propertyName)PropertyAccessPropertyAccessStrategyChainedImpl. buildPropertyAccess(Class containerJavaType, String propertyName)PropertyAccessPropertyAccessStrategyEmbeddedImpl. buildPropertyAccess(Class containerJavaType, String propertyName)PropertyAccessPropertyAccessStrategyEnhancedImpl. buildPropertyAccess(Class containerJavaType, String propertyName)PropertyAccessPropertyAccessStrategyFieldImpl. buildPropertyAccess(Class containerJavaType, String propertyName)PropertyAccessPropertyAccessStrategyIndexBackRefImpl. buildPropertyAccess(Class containerJavaType, String propertyName)PropertyAccessPropertyAccessStrategyMapImpl. buildPropertyAccess(Class containerJavaType, String propertyName)PropertyAccessPropertyAccessStrategyMixedImpl. buildPropertyAccess(Class containerJavaType, String propertyName)PropertyAccessPropertyAccessStrategyNoopImpl. buildPropertyAccess(Class containerJavaType, String propertyName) -
org.hibernate.property.access.spi中PropertyAccess的使用
返回PropertyAccess的org.hibernate.property.access.spi中的方法 修饰符和类型 方法 说明 PropertyAccessPropertyAccessStrategy. buildPropertyAccess(Class containerJavaType, String propertyName)Build a PropertyAccess for the indicated property
-