我在数据库中有一个表Car,我想在对象中获取它的所有信息,然后我想使用Java流过滤数据并显示数据。我试图在列表车中获取数据,但它现在没有工作
nkoocmlb1#
public List<Car> findCarLessThan20kAndYellowColor() { return carRepository.findAll() .stream() .filter(price -> price.getPrice() < 20_000.00) .filter(color -> color.getColor().equalsIgnoreCase("yellow")) .collect(Collectors.toList()); }
我想用java做filter stream最后找到了解决方法可以直接用stream后的findAll()方法.
1条答案
按热度按时间nkoocmlb1#
我想用java做filter stream最后找到了解决方法可以直接用stream后的findAll()方法.