Andrew Guibert
Andrew Guibert
Closing this item as a duplicate of #111
I had closed it as a duplicate because #111 refers to a similar type of bridge methods w/ JSON-P. I figured to/fromJsonStructure would be sufficient for users to bridge with...
Copying a bit of context over from #160, @leadpony made an important comment here: https://github.com/eclipse-ee4j/jsonp/issues/160#issuecomment-521802692 Which states: > The JSON grammar does not allow NaN and Infinity to be represented...
I like the idea of having a `@Schedule` annotation because it will help close gaps between EJB and CDI. I came up with a working prototype of what this might...
I think applying JSON-B metadata to objects that the developer is not able to modify is a good case to have covered. However, I would be strongly opposed to any...
what would be the value of holding JSON-B config in JSON format? Could you include a sample of what you had in mind? If we need to do nesting in...
Consider the following data model class: ```java public static class Person { public String name; public LocalDate birthDate; public LocalDate deathDate; } ``` We could apply `@JsonbDateFormat(JsonbDateFormat.TIME_IN_MILLIS)` at the class...
I was chatting with my co-worker, @njr-11, on this and he raised a good argument that there shouldn't be any need to have externalized JSON-B config that can be overridden...
Yea I think you are on the right track and we are in agreement that a code-driven solution is the best option. A config-based solution would be very error-prone and...
@m0mus can you elaborate on what you had in mind for this? > JsonbConfig should support reading configuration from external sources using MicroProfile configuration or Config JSR which is in...