При попытке сделать db-вызов я получаю ошибку ниже, если кто-нибудь сталкивался с этим и решил?
Caused by: javax.sql.rowset.spi.SyncFactoryException: Resource javax/sql/rowset/rowset.properties not found
at javax.sql.rowset.spi.SyncFactory.lambda$initMapIfNecessary$0(SyncFactory.java:393)
at java.security.AccessController.doPrivileged(Native Method)
at javax.sql.rowset.spi.SyncFactory.initMapIfNecessary(SyncFactory.java:388)
at javax.sql.rowset.spi.SyncFactory.getInstance(SyncFactory.java:557)
at com.sun.rowset.CachedRowSetImpl.<init>(CachedRowSetImpl.java:361)
at com.sun.rowset.RowSetFactoryImpl.createCachedRowSet(RowSetFactoryImpl.java:49)
Добавление фрагментов,
private CachedRowSet getRowSet(ResultSet resultSet) throws SQLException {
CachedRowSet results = RowSetProvider.newFactory().createCachedRowSet();
results.populate(resultSet);
return results;
}