-
Notifications
You must be signed in to change notification settings - Fork 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
Jackson-databind reflection problem with swagger-ui #10220
Comments
I have the same issue, it seems it's related to having webflux and webmvc libraries inside the classpath (which is not good and I have to fix that in my case sometime), but what's strange is that the error message disappears when downgrading back to swagger 2.2.25 still having webflux and webmvc in my classpath. |
This is definetely a bug in swagger. Jackson removed the deprecated findJsonValueMethod method with 2.18: FasterXML/jackson-databind#4525 This code first tries the new method, finds it and invokes it. However, if that method returns null, the return is not called and it then tries the old method. |
This is actually an issue in swagger, core: check over there: swagger-api/swagger-core#4755 |
I am still facing this issue. is there any solution for this ? |
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [nu.ndw.nls.locationdataissuesapi:client-feign](https://dev.azure.com/ndwnu/NLS/_git/nls-location-data-issues) ([source](https://dev.azure.com/ndwnu/NLS/_git/nls-location-data-issues)) | compile | patch | `1.0.14` -> `1.0.15` | | nu.ndw.nls.geojson.geometry:specification | | patch | `1.3.5` -> `1.3.8` | | nu.ndw.nls.geojson.geometry:specification-open-api-config | | patch | `1.3.5` -> `1.3.8` | | nu.ndw.nls.geojson.geometry:geometry-model | compile | patch | `1.3.5` -> `1.3.8` | | nu.ndw.nls.geojson.geometry:specification | compile | patch | `1.3.5` -> `1.3.8` | | nu.ndw.nls.geojson.geometry:geometry-jts | compile | patch | `1.3.5` -> `1.3.8` | | [nu.ndw.nls:routing-map-matcher-library](https://github.com/ndwnu/nls-routing-map-matcher) | compile | minor | `13.2.4` -> `13.3.0` | | [io.swagger.core.v3:swagger-annotations](https://github.com/swagger-api/swagger-core) | compile | patch | `2.2.26` -> `2.2.27` | --- ### Release Notes <details> <summary>swagger-api/swagger-core (io.swagger.core.v3:swagger-annotations)</summary> ### [`v2.2.27`](https://github.com/swagger-api/swagger-core/releases/tag/v2.2.27): Swagger-core 2.2.27 released! [Compare Source](swagger-api/swagger-core@v2.2.26...v2.2.27) - fix: swagger-api/swagger-ui#10220 ([#​4806](swagger-api/swagger-core#4806)) - Fix for record component annotations on fields with JsonProperty annotations ([#​4795](swagger-api/swagger-core#4795)) - Fix java.lang.NullPointerException and remove stack trace output from ModelResolver ([#​4793](swagger-api/swagger-core#4793)) - Move applySchemaResolution check to a method ([#​4791](swagger-api/swagger-core#4791)) - feat(gradle-plugin): enable lazy evaluation, implicit task dependencies and fixing `setEncoding` ([#​4761](swagger-api/swagger-core#4761)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or PR is renamed to start with "rebase!". 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://github.com/renovatebot/renovate/discussions) if that's undesired. --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
As I came here when trying to get that running in GraalVM (Spring Native), I wanted to add some more details for others having the same issue:
.registerType(
BeanDescription::class.java,
MemberCategory.INVOKE_DECLARED_METHODS,
)
.registerType(MethodHandles.Lookup::class.java)
.registerType(
Schema31Mixin.TypeSerializer::class.java,
MemberCategory.INVOKE_DECLARED_CONSTRUCTORS,
)
.registerType(
JsonSchema::class.java,
MemberCategory.INVOKE_DECLARED_CONSTRUCTORS,
) The metadata repositories will hopefully include those details soon but until then... |
This fix API Swagger documentation error due to jackson version mismatch. See swagger-api/swagger-ui#10220. Fixes #1347
Using swagger-ui version 2.2.26 and jackson-databind version 2.18.1, on jdk21, i get tons of these errors..
ERROR io.swagger.v3.core.jackson.ModelResolver - Neither 'findJsonValueMethod' nor 'findJsonValueAccessor' found in jackson BeanDescription. Please verify your Jackson version.
When i look in jackson-databind, findJsonValueMethod has indeed been recently removed but i do see
So i was wondering if anyone could tell me what i am doing wrong here??
(it would also be nice to log beanDesc.getClass().getClassName() in that error message.)
The text was updated successfully, but these errors were encountered: