Код: Выделить всё
@Component
public class PropertyConverter implements Converter {
@Autowired
PropertyShopService propertyShopService;
@Override
public PropertyShop convert(@NotNull String id) {
long idBD = Long.parseLong(id);
return propertyShopService.getPropertyById(idBD); // Mono
}
Подробнее здесь: https://stackoverflow.com/questions/702 ... ono-object
Мобильная версия