Spring数据存储库-查找列表和其他字段中的正常字段

时间:2018-11-29 20:46:52

标签: java spring spring-data-jpa

我阅读了春季官方文档(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);

}

0 个答案:

没有答案