我阅读了春季官方文档(https://docs.spring.io/spring-data/jpa/docs/current/reference/html/)
date
我的错误是:
In findByAgeIn(Collection<Age> ages) … where x.age in ?1
NotIn findByAgeNotIn(Collection<Age> ages) … where x.age not in ?1
我正在尝试将Spring CrudRepository与在列表中键入以下内容的查找设备一起使用:
Caused by: java.lang.NoSuchMethodError: com.project.dao.DeviceRepository.findBySiteAndTypeIn(Lcom/project/model/Site;Ljava/util/List;)Ljava/util/List;
此代码可以,但没有列表:
public interface DeviceRepository extends CrudRepository<Device, Long> {
List<Device> findBySiteAndTypeIn(Site site, List<String> types);
}