|
For the latest stable version, please use Spring Data KeyValue 3.5.5! |
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);
}