Skip to content

Instantly share code, notes, and snippets.

@ghahramani
Last active January 21, 2020 23:33
Show Gist options
  • Save ghahramani/437f6d07b85aa62fe189a5da655b911b to your computer and use it in GitHub Desktop.
Save ghahramani/437f6d07b85aa62fe189a5da655b911b to your computer and use it in GitHub Desktop.
Spring Data Default Implementation
@NoRepositoryBean
interface BaseGenericReactiveMongoRepository<T> : ReactiveMongoRepository<T, String> {
fun patch(id: String, fields: Map<String, Any>): Mono<T>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment