Skip to content

Instantly share code, notes, and snippets.

@mseemann
Created September 3, 2021 10:29
Show Gist options
  • Save mseemann/a205f219fc9cac53956b252335af921f to your computer and use it in GitHub Desktop.
Save mseemann/a205f219fc9cac53956b252335af921f to your computer and use it in GitHub Desktop.
mongo-streams UserRepository
import org.springframework.data.repository.reactive.ReactiveCrudRepository;
public interface UserRepository extends ReactiveCrudRepository<User, String> {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment