Michael Wirth
Michael Wirth
+1 That feature would be really awesome!!
Same here. I use Kotlin with the following declaration and it results in a ClassCastException. ```kotlin @GET("/api/v2/accounts") fun accounts(): Mono ``` ```log Caused by: java.lang.ClassCastException: class sun.reflect.generics.reflectiveObjects.ParameterizedTypeImpl cannot be cast...
@OlgaMaciaszek What is the roadmap for this project? There was no update for 6 months. Is it still active or already abanded in favor of another solution? I'd like to...
Hi @OlgaMaciaszek I'd be glad to work on some bug fixes and smaller enhancements. We're using Square to define a declarative web client. I assume with the migration to Spring...
I found a simple solution. Split the API into multiple interfaces and then extend them by a master interface which is the only one with the `@RetrofitClient` annotation
same problem. is there any solution of workaround?
Here's a little workaround for Spring Boot 3.1.x OpenTelementry and Brave implementation behave differently. ### Brave requires the local baggage to be registered: ```kotlin @Bean internal fun localBaggagePropagationCustomizer() = brave.baggage.BaggagePropagationCustomizer...
Hi @onobc From a developer's point of view, it is bad to have unnecessary dependencies on the classpath, just because of a "local/developer" setup and examples. In a prod environment...
I have the same issue. For me just excluding a specific package would work. Of course, a better solution would be to just include the sources in the `/src/main/kotlin` and...
@tristantarrant Yes, I missed that. I assumed the /rest called would be relative, to the base URL, but I see now they are absolute as well.