如何通过多个id查询多条数据

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/qq_36367789/article/details/77995822

如何通过多个id查询多条数据


List<Integer> list = Arrays.asList(1,2,3);
List<ProductCategory> results = repository.findByCategoryTypeIn(list);
for(ProductCategory item:results){
System.out.println(item.toString());
}

上一篇:python3使用Lxml库操作XPath


下一篇:如何查看某个端口被谁占用