EmployeeRepository: The name for our Spring Data repository.
ReactiveCrudRepository: Spring Data Commons’ base interface for any reactive repository. Note that this isn’t specific to R2DBC but instead for ANY reactive Spring Data module.
Employee: The domain type for this repository (which we’ll code further in the chapter).
Long: The primary key’s type.