解释这段代码@Override public Iterable<Ingredient> findAll() ( return jdbc,query("select id, name, type from Ingredient", this::mapRowToIngredient); }
时间: 2023-05-19 16:04:56 浏览: 81
这段代码是一个实现了 Spring Data JPA 的 Repository 接口中的 findAll 方法。它使用了 JDBC 查询数据库中 Ingredient 表的所有记录,并将每条记录映射为一个 Ingredient 对象。最终返回一个 Iterable 类型的结果集。
阅读全文