Skip to content

Commit 9edf2e5

Browse files
mp911deodrotbohm
authored andcommitted
DATACMNS-1364 - Store persistent properties in ConcurrentHashMap.
We now use ConcurrentHashMap to store persistent properties of a PersistentEntity and to prevent eviction caused by GC activity. Previously, we used ConcurrentReferenceHashMap defaulting to soft references. Soft references can be cleared at the discretion of the GC in response to memory demand. So a default ConcurrentReferenceHashMap is memory-sensitive and acts like a cache with memory-based eviction rules. Persistent properties are not subject to be cached but elements of a PersistentEntity and cannot be recovered once cleared. Original pull request: #304.
1 parent 13b1150 commit 9edf2e5

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

src/main/java/org/springframework/data/mapping/model/BasicPersistentEntity.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ public BasicPersistentEntity(TypeInformation<T> information, @Nullable Comparato
104104
this.constructor = PreferredConstructorDiscoverer.discover(this);
105105
this.associations = comparator == null ? new HashSet<>() : new TreeSet<>(new AssociationComparator<>(comparator));
106106

107-
this.propertyCache = new ConcurrentReferenceHashMap<>();
107+
this.propertyCache = new ConcurrentHashMap<>();
108108
this.annotationCache = new ConcurrentReferenceHashMap<>();
109109
this.propertyAnnotationCache = CollectionUtils.toMultiValueMap(new ConcurrentReferenceHashMap<>());
110110
this.propertyAccessorFactory = BeanWrapperPropertyAccessorFactory.INSTANCE;

src/test/java/org/springframework/data/mapping/model/BasicPersistentEntityUnitTests.java

+7-4
Original file line numberDiff line numberDiff line change
@@ -138,24 +138,27 @@ public void considersComparatorForPropertyOrder() {
138138
assertThat(entity.getPersistentProperty("ssn")).isEqualTo(iterator.next());
139139
}
140140

141-
@Test // DATACMNS-186
141+
@Test // DATACMNS-18, DATACMNS-1364
142142
public void addingAndIdPropertySetsIdPropertyInternally() {
143143

144144
MutablePersistentEntity<Person, T> entity = createEntity(Person.class);
145145
assertThat(entity.getIdProperty()).isNull();
146146

147+
when(property.getName()).thenReturn("id");
147148
when(property.isIdProperty()).thenReturn(true);
148149
entity.addPersistentProperty(property);
149150
assertThat(entity.getIdProperty()).isEqualTo(property);
150151
}
151152

152-
@Test // DATACMNS-186
153+
@Test // DATACMNS-186, DATACMNS-1364
153154
public void rejectsIdPropertyIfAlreadySet() {
154155

155156
MutablePersistentEntity<Person, T> entity = createEntity(Person.class);
156157

158+
when(property.getName()).thenReturn("id");
157159
when(property.isIdProperty()).thenReturn(true);
158160
when(anotherProperty.isIdProperty()).thenReturn(true);
161+
when(anotherProperty.getName()).thenReturn("another");
159162

160163
entity.addPersistentProperty(property);
161164
exception.expect(MappingException.class);
@@ -429,7 +432,7 @@ static class PersistableEntity implements Persistable<Long> {
429432

430433
private final Long id = 42L;
431434

432-
/*
435+
/*
433436
* (non-Javadoc)
434437
* @see org.springframework.data.domain.Persistable#getId()
435438
*/
@@ -438,7 +441,7 @@ public Long getId() {
438441
return 4711L;
439442
}
440443

441-
/*
444+
/*
442445
* (non-Javadoc)
443446
* @see org.springframework.data.domain.Persistable#isNew()
444447
*/

0 commit comments

Comments
 (0)