程序包 org.hibernate

接口 IdentifierLoadAccess<T>


  • public interface IdentifierLoadAccess<T>
    Loads an entity by its primary identifier.
    作者:
    Eric Dalquist, Steve Ebersole
    • 方法详细资料

      • getReference

        T getReference​(Serializable id)
        Return the persistent instance with the given identifier, assuming that the instance exists. This method might return a proxied instance that is initialized on-demand, when a non-identifier method is accessed. You should not use this method to determine if an instance exists; to check for existence, use load(java.io.Serializable) instead. Use this only to retrieve an instance that you assume exists, where non-existence would be an actual error.
        参数:
        id - The identifier for which to obtain a reference
        返回:
        the persistent instance or proxy
      • load

        T load​(Serializable id)
        Return the persistent instance with the given identifier, or null if there is no such persistent instance. If the instance is already associated with the session, return that instance, initializing it if needed. This method never returns an uninitialized instance.
        参数:
        id - The identifier
        返回:
        The persistent instance or null