Skip to content

Instantly share code, notes, and snippets.

View yashdsaraf's full-sized avatar
💭
Not on vacation

Yash D. Saraf yashdsaraf

💭
Not on vacation
View GitHub Profile
@yashdsaraf
yashdsaraf / PatientHandler.java
Last active June 17, 2018 10:06
CRUD (without search) operations for sample Patient model.
@Component
@RequiredArgsConstructor
public class PatientHandler {
private final PatientRepo patientRepo;
Mono<ServerResponse> getPatient(ServerRequest request) {
UUID id = UUID.fromString(request.pathVariable("id"));
return patientRepo
.findById(id)