Quantcast
Channel: Spring Community Forums - NoSQL
Viewing all articles
Browse latest Browse all 128

Problems with Jackson / Redis hash mapping of nulls & collections

$
0
0
I'm having some problems with Redis / Jackson integration, and I'm unsure if it's a bug in the code, or something I've configured incorrectly.

It appears that null values, and collections are not correctly mapped.

I've created a gist[1] with a suite of tests that show the problems I'm having.

In summary, here's an example:

Code:

        @Test
        public void nullLongIsHandledCorrectly()
        {
                DecoratingStringHashMapper<EntityWithId> mapper = mapperOf(EntityWithId.class);
                EntityWithId entity = new EntityWithId();
       
                // Encode & decode
                Map<String, String> hash = mapper.toHash(entity);
                EntityWithId decoded = mapper.fromHash(hash);
               
                assertThat(decoded, notNullValue());
                assertThat(decoded.getId(), nullValue());
        }

        @Data
        public static class EntityWithId
        {
                Long id;
                String otherField = "Hello"; // so there's something to serialize
        }

This test fails with:

Quote:

java.lang.IllegalArgumentException: Can not construct instance of java.lang.Long from String value 'null': not a valid Long value
at [Source: N/A; line: -1, column: -1] (through reference chain: com.mangofactory.example.EntityWithId["id"])
The other examples of failures are :
  • Lists of Enums encoded as [FOO], instead of ["FOO"]
  • Lists of strings not decoding correctly
  • Empty lists not decoding correctly


Could someone please advise if this is a bug, or if I've configured (something) incorrectly?


[1] : https://gist.github.com/martypitt/6183822

Viewing all articles
Browse latest Browse all 128

Trending Articles