For the latest stable version, please use Spring Data KeyValue 3.4.0! |
Map Repositories
Map repositories reside on top of the KeyValueTemplate
.
Using the default SpelQueryCreator
allows deriving query and sort expressions from the given method name, as the following example shows:
@Configuration
@EnableMapRepositories
class KeyValueConfig {
}
interface PersonRepository implements CrudRepository<Person, String> {
List<Person> findByLastname(String lastname);
}