There was an error while loading. Please reload this page.
Use the auto close feature to make sure that statements are closed:
try(PreparedStatement select = learnweb.getConnection().prepareStatement("SELECT ...");) { select.setInt(1, groupId); ResultSet rs = select.executeQuery(); while(rs.next()) .... }
Try without catch in this case. Because most errors must be catched in the beans to allow notification of users.