Alexandre A Barbosa
01/03/2023, 2:54 PMlateinit
… should I?
In java I would inject the interface like this
@Autowired MyFeignClient client
and I can use it just like this
client.postMyData()
but please, how can I do this in Kotlin?df
01/03/2023, 2:57 PM@Component
class YourConsumer(
private val client: MyFeignClient
) {
...
}
Alexandre A Barbosa
01/03/2023, 2:58 PMAlexandre A Barbosa
01/03/2023, 2:58 PMJacob
01/03/2023, 2:58 PMAlexandre A Barbosa
01/03/2023, 2:59 PMAlexandre A Barbosa
01/03/2023, 3:00 PMAlexandre A Barbosa
01/03/2023, 3:03 PMAlexandre A Barbosa
01/03/2023, 3:04 PMAlexandre A Barbosa
01/03/2023, 3:04 PMAlexandre A Barbosa
01/06/2023, 8:53 PM@Configuration
properly