DATAREST-1320 - Fixed lookup of cached values in PersistentEntitiesResourceMappings.

We now properly only answer PersistentEntitiesResourceMappings.hasMappingsFor(…) with true if we find a non-null value in the cache. Previously, even a failed attempt to create some ResourceMapping would've caused ….hasMappingsFor(…) to indicate it PersistentEntitiesResourceMappings contains a mapping.

This lead to downstream NullPointerExceptions as ….getMetadataFor(…) was accessed without a null guard after ….hasMappingFor(…) returned true.
This commit is contained in:
Oliver Drotbohm
2018-12-21 15:04:44 +01:00
parent 8c0348f41b
commit 39b897e6d1
2 changed files with 43 additions and 6 deletions

View File

@@ -152,12 +152,7 @@ public class PersistentEntitiesResourceMappings implements ResourceMappings {
*/
@Override
public boolean hasMappingFor(Class<?> type) {
if (cache.containsKey(type)) {
return true;
}
return false;
return cache.get(ProxyUtils.getUserClass(type)) != null;
}
/*

View File

@@ -0,0 +1,42 @@
/*
* Copyright 2018 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.data.rest.core.mapping;
import static org.assertj.core.api.Assertions.*;
import org.junit.Test;
import org.springframework.data.keyvalue.core.mapping.context.KeyValueMappingContext;
import org.springframework.data.mapping.context.PersistentEntities;
/**
* Unit tests for {@link PersistentEntitiesResourceMappings}.
*
* @author Oliver Gierke
*/
public class PersistentEntitiesResourceMappingsUnitTests {
@Test // DATAREST-1320
public void doesNotConsiderCachedNullValuesToIndicateMappingAvailable() {
KeyValueMappingContext<?, ?> context = new KeyValueMappingContext<>();
PersistentEntitiesResourceMappings mappings = new PersistentEntitiesResourceMappings(
PersistentEntities.of(context));
assertThat(mappings.getMetadataFor(String.class)).isNull();
assertThat(mappings.hasMappingFor(String.class)).isFalse();
}
}