Map Repositories

Map 存储库驻留在 KeyValueTemplate 之上。使用默认的 SpelQueryCreator 允许根据给定的方法名称导出查询和排序表达式,如下面的示例所示:

@Configuration
@EnableMapRepositories
class KeyValueConfig {

}

interface PersonRepository implements CrudRepository<Person, String> {
    List<Person> findByLastname(String lastname);
}