Skip to content
Advertisement

Custom hashCode implementation for ConcurrentSkipListMap doen’t work as expected

The idea is to allow ConcurrentSkipListMap to store only one ApprovalRequest which has unique customerId and its state is PENDING. I supplied overridden hashCode and equals implementations. Moreover, in unit test the ApprovalRequest suppose to create a new instance using lombok’s @Builder. How to make it work?

JavaScript

Test:

JavaScript

LoanApprovalRequest

JavaScript

Advertisement

Answer

ConcurrentSkipListMap is not based on hash codes, but on ordering/comparisons.

So you will have to use that customerId in compareTo as well (or supply the Map with a different Comparator based on customerId). Otherwise it will not be consistent with equals and the Map key uniqueness checks won’t work.

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement