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: