79421313

Date: 2025-02-07 15:07:30
Score: 1.5
Natty:
Report link

Seems as if you (or payara) are using jersey which seems to use yasson per default. In my environment things were similar and with quite similar problems (why does yasson keep stepping in?). The solution in my case was to make the following library available:

            <dependency>
                <groupId>org.glassfish.jersey.media</groupId>
                <artifactId>jersey-media-json-jackson</artifactId>
                <version>3.1.6</version>
            </dependency>

No idea why though Jackson was configured no error/warning is displayed anywhere (at least I did not see anything). Thanks to @Julios_Rodmax who pointed into this direction.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @Julios_Rodmax
  • Low reputation (0.5):
Posted by: r-uu