-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
feign-soap change from javax to jakarta #1918
Comments
Have a same problem.. @velo can you please take a look? I've found this one #1700 but it still use javax packages instead jakarta packages. F.e. see this: https://github.com/OpenFeign/feign/blob/12.1/jaxb/src/main/java/feign/jaxb/JAXBContextFactory.java#L21 It is from jaxb-api (javax.xml.bind:jaxb-api:2.3.1) but afaik shoud be from bind-api (jakarta.xml.bind:jakarta.xml-bind). Did i make a mistake? |
Probably a new module is required for Jakarta change |
@velo thanks for the answer! Did I understood correctly that I can create a PR with new module(f.e feign-jaxb-jakarta), where instead of |
If you can do that, that would be amazing. Someone already did it for jaxrs, so seems reasonable |
can you please let me know when will be the new module published and ready to use? |
Feign Jakarta is live on Maven Central since 12.3 |
@kdavisk6 Feign Jakarta contains only the class Since there's already |
As mentioned above by @virtual-machinist, this original problem of this issue is not solved by the release of module |
@virtual-machinist @EarthCitizen I just included the new module this week in a project at work, where i replaced feign-soap by the new jakarta module and managed to replace old jaxb by jakarta dependencies. Please go ahead and use it. I'd gladly hear feedback if there are any bugs or missing features. |
For spring boot 3 support, will feign-soap using javax be changed to jakarta. Currently using 12.1 version I'm getting
javax.xml.bind.JAXBException Implementation of JAXB-API has not been found on module path or classpath
I added jaxb dependency but still getting same error.
The text was updated successfully, but these errors were encountered: