标签: eclipselink jpa-2.0 spring-data-jpa
如果我执行此查询
@Modifying @Query("delete from anomaly a where a.personId in ?1 and a.date in ?2 ") void deleteByPersonIdAndDate(List<Long> personIds, Collection<LocalDate> days);
如何从eclipselink-cache中删除受此查询影响的对象?