Код: Выделить всё
public void sendNotification(String uuid) {
List dataList = myDataRepository.findAllById(uuid);
NotificationDto dto = new NotificationDto();
for (MyData data : dataList) {
// transform and append to dto
}
webclient.send(dto);
}
Подробнее здесь: https://stackoverflow.com/questions/716 ... -webclient