-
Notifications
You must be signed in to change notification settings - Fork 125
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
springboot 3.2 app not starting with reactive feign in class path #651
Comments
Following fix should solve the problem:
|
springboot 3.2 app not starting with reactive feign in class path
Hey, @ramzes3333 I am using the reactive feign client solution. Are you going to release a version with the fix, or should I use your example as solution in my code. however, how can I implement your solution in my code? Thanks ahead. |
I think it's best to wait for the authors to release an official package with this fix. For testing purposes, you can clone my fork with this fix, build it, and integrate it into your project. |
Thanks @ramzes3333 We get run error of finding multiple beans for feignConvrtionService. |
Do you have any estimation when the version with the fix will be released? |
@zzzzizu123 Unfortunately, I do not have the knowledge of when the version with the fix will be released. I am not the owner of this repository. Just like you, I use this library and want to use it together with Spring Boot in version 3.2 :) |
We are having the same issue. Using @ramzes3333 fork works great as a temporary fix while waiting for a release with a permanent fix. |
I waited too long for this feature, so I had to create CoApi - https://github.com/Ahoo-Wang/CoApi |
Hey guys, is there a plan to release this fix somehow soon(ish)? |
EDIT: this solution doesn't work if you need to use any extended functionality, such as request interceptors I managed to figure out a workaround to use the solution from @ramzes3333 without having to build my own version of the entire project.
And that's it. Happy coding :) |
Hey guys, is there a plan to release this fix somehow soon(ish)? |
Hi team, any plans to release spring boot 3.2.x compatible version ? |
Hi Guys! I'm in the same state as the rest, any plasn to release spring boot 3.2.x compatible version ? |
This solution not working with Load Balancer and Resilience4 :( |
Hi |
Hi, we also encountered the same issue. This limits us to upgrade spring-boot to 3.1 only. Is there any timeline planned for the fix? |
I have created a fork of @ramzes3333's fix and published a new version to Maven Central, to make it available for everyone. Just replace the starter dependency in your <dependency>
<groupId>com.jardoapps.reactivefeign</groupId>
<artifactId>feign-reactor-spring-cloud-starter</artifactId>
<version>4.1.0</version>
<type>pom</type>
</dependency> If you need any other modules, just replace the groupId with |
Thanks @Jardo-51 we will try it for sure. |
I think the project is abandoned. In my project, I replaced Feign Reactive with a pure solution based on WebClient. |
That's the reason why I decided to fork it and publish a new version. |
released version 4.1.0 with support of SB3.2 |
Invalid value type for attribute 'factoryBeanObjectType': java.lang.String
using following version
openJDK17
spring-cloud.version 2023.0.0
spring boot parent version 3.2.0
feign-reactor-spring-cloud-starter version 4.0.3
NOTE: Application started normally after removing reactive feign from class path
The text was updated successfully, but these errors were encountered: