我需要在JPARepository中执行原生查询,这是我可以在我的JPARepository中执行的唯一方法: public interface IEntity extends JpaRepositoryprocessing failed; nested exception is org.springframework.orm.jpa.JpaSystemException: could not extract ResultSet; nested exception is org.hibernate.exception.GenericJDBCException
现在,我试图通过使用查询更新实体来更改数据库中的一些数据,但我得到了这个错误:org.springframework.orm.jpa.JpaSystemException: could not extract ResultSet; nested exception isorg.hibernate.exception.GenericJDBCException: could not extract ResultSet</em
private String id;
private List<Data> datas; 我有一个扩展crud存储库的ApiRepository,在这里我定义了一个查询select api from Api api where :data in (api.datas)")在执行查询时,我会得到以下错误:
org.springframework.dao.Inval