Mark Struberg
Mark Struberg
hi! up for review before I gonna commit it.
I'm missing a set of methods in both JsonGenerator and JsonObjectBuilder to fluently deal with null values. E.g. if you look at JsonObjectBuilder.add [1] then you'll notice that it throws...
JSONB currently has some weakness when it comes to class hierarchies like `class A extends B`. In 3.7.1 of the JSONB-1.0 spec it states that For a serialization operation, if...
Hi! We got an interesting case from a user over in Apache Johnzon. https://issues.apache.org/jira/browse/JOHNZON-177 They basically have a POJO which has an int field. But the sent JSON is actually...
Assume you have a Java class which has an Enum. What happens if a JSON input contains a value for that Enum which is not a valid Enum value? The...
I'm not really happy with the RequestContextController. And it appears to me that the spec is broken. Here is the important part from the spec: > 6.5.2. Activating Built In...
The SerializersCustomizationCDITest did assume a different behaviour than the non-CDI SerializersCustomizationTest.
It seems that the deserialiser in SerializersCustomizationCDITest is expecting to see a START_OBJECT of the actual items instead of the actual current JsonValue event which is a START_ARRAY. https://github.com/jakartaee/jsonb-api/blob/master/tck/src/main/java/ee/jakarta/tck/json/bind/cdi/customizedmapping/serializers/model/serializer/AnimalListDeserializerInjected.java#L44 This...
Hi! It seems that the Test got totally changed. It now tests something very different than before, but without updating the spec section! In commit 021f446d5bceffc7169ec4636 a lot of similar...
Can someone please explain to me the rational behind ```org.jboss.cdi.tck.tests.deployment.discovery.EmptyBeansXmlDiscoveryTest```? An empty beans.xml file always behaved as marker file for a ALL! What you wrote in CDI-4.0 is that "A...