-
Bug
-
Resolution: Duplicate
-
Major
-
None
-
9.4.1.Final
-
None
This test case fails:
@Test
public void nullValuesAreNotUnwrapped() {
Configuration config = new ConfigurationBuilder().build();
SpringEmbeddedCacheManager cacheManager = new SpringEmbeddedCacheManager(new DefaultCacheManager(config));
SpringCache cache = cacheManager.getCache("foo");
cache.put("nullable", null);
assertNull(cache.get("nullable", () -> "a"));
}