Клиент Feign выглядит так (Kotlin ):
Код: Выделить всё
@FeignClient(
value = "myFeignClient",
url = "\${controller.baseUrl}",
configuration = [CustomFeignConfiguration::class]
)
interface MyFeignClient {
@GetMapping(value = ["v1/myObjects/someProperty/{value}"])
fun getMyObjectsBySomeProperty(@PathVariable(value="value") value: String): List
Код: Выделить всё
data class PageView(
val metadata: PageMetadataView,
val content: List,
)
Подробнее здесь: https://stackoverflow.com/questions/792 ... ign-client