James Bench
James Bench
Always requiring the extensions makes a lot of sense to me. I'm not sure I follow the logic behind ignoring the file if it can't be found but I'll take...
It would be good if the requireAudience method could also work with arrays.
@thiloplanz Sorry - I wasn't clear, I meant for the requireAudience method to support looking for a single audience from an array in the token. ``` { aud: ['a', 'b']...
This still seems to be an issue in 1.0.1.
I've been able to get it to work by passing both limits and requests for memory storage; I'm not sure if I had something wrong previously or it's required to...
I'm building something roughly along the CQRS pattern where I have a command object that includes the operation (create or update) and the JSON (as a Jackson ObjectNode) to send...
The given workaround doesn't work for me when using `@JsonDeserialize(using=...)` ``` @JsonTypeInfo(use = JsonTypeInfo.Id.NAME, include = JsonTypeInfo.As.PROPERTY, property = "type") @JsonSubTypes( ... ) sealed class Criteria class CriteriaStringDeserializer : JsonDeserializer()...
I think I am adding the module: ``` ObjectMapper mapper = JsonMapper.builder() .addModule(new JavaTimeModule()) .build(); ``` It doesn't actually work in 2.11, it just serializes the date without using the...
What would be the best way to retrieve a value added using `putPOJO`? I have a unit test where I want to make sure that the value added at a...
We've updated to 2.15 and we've been able to use a PojoNode containing a LocalDateTime in our tests without exceptions being thrown :-)