spring-data-keyvalue
spring-data-keyvalue copied to clipboard
Project to provide infrastructure to implement Spring Data repositories on top of key-value-based, in-memory data stores.
Results
48
spring-data-keyvalue issues
Sort by
recently updated
recently updated
newest added
Same issue as in: https://github.com/spring-projects/spring-data-mongodb/issues/4237 Reproducer: https://github.com/micheljung/spring-data-keyvalue-569 ```kotlin @SpringBootApplication @EnableMapRepositories class DemoApplication fun main(args: Array) { val context = runApplication(*args) } interface WebsiteRepository : CrudRepository @KeySpace("website") data class Website( @Id...
type: bug