Back to Intellij Community

HibernateResource

java/java-impl/resources/inspectionDescriptions/HibernateResource.html

2025.3-rc-2748 B
Original Source

Reports calls to the openSession() method if the returned org.hibernate.Session resource is not safely closed.

By default, the inspection assumes that the resources can be closed by any method with 'close' or 'cleanup' in its name.

Example:

void doHibernateQuery(SessionFactory factory) {
    Session session = factory.openSession(); //warning
    session.createQuery("...");
  }

Use the following options to configure the inspection:

  • Whether a org.hibernate.Session resource is allowed to be opened inside a try block. This style is less desirable because it is more verbose than opening a resource in front of a try block.
  • Whether the resource can be closed by any method call with the resource passed as argument.