Interface HibernateCallback<T>

  • Type Parameters:
    T - the result type
    Functional Interface:
    This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

    @FunctionalInterface
    public interface HibernateCallback<T>
    Callback interface for Hibernate code. To be used with HibernateTemplate's execution methods, often as anonymous classes within a method implementation. A typical implementation will call Session.load/find/update to perform some operations on persistent objects.
    Since:
    4.2
    Author:
    Juergen Hoeller
    See Also:
    HibernateTemplate, HibernateTransactionManager
    • Method Detail