Here is a failing test:
public void test() throws Exception {
URI blankUri = URI.create("");
assertNotNull(blankUri);
ObjectMapper objectMapper = new ObjectMapper();
assertNotNull("serialized and deserialized blank URI should not be null",
objectMapper.readValue(objectMapper.writeValueAsString(blankUri), URI.class));
}