JDK-8064890 : SecureClassLoader should use a ConcurrentHashMap
  • Type: Enhancement
  • Component: security-libs
  • Sub-Component: java.security
  • Priority: P4
  • Status: Resolved
  • Resolution: Fixed
  • Submitted: 2014-11-14
  • Updated: 2015-09-10
  • Resolved: 2015-06-18
The Version table provides details related to the release that this issue/RFE will be addressed.

Unresolved : Release in which this issue/RFE will be addressed.
Resolved: Release in which this issue/RFE has been resolved.
Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.

To download the current JDK release, click here.
JDK 9
9 b70Fixed
Related Reports
Relates :  
Description
java.security.SecureClassLoader uses a HashMap to maintain an internal collection of CodeSource to ProtectionDomain. Synchronization is needed when accessing the map. We can investigate if a ConcurrentHashMap can improve performance.