Package org.springframework.util
Class AlternativeJdkIdGenerator
java.lang.Object
org.springframework.util.AlternativeJdkIdGenerator
- All Implemented Interfaces:
IdGenerator
An
IdGenerator
that uses SecureRandom
for the initial seed and
Random
thereafter, instead of calling UUID.randomUUID()
every
time as JdkIdGenerator
does.
This provides a better balance between securely random ids and performance.- Since:
- 4.0
- Author:
- Rossen Stoyanchev, Rob Winch
-
Constructor Summary
-
Method Summary
-
Constructor Details
-
AlternativeJdkIdGenerator
public AlternativeJdkIdGenerator()
-
-
Method Details
-
generateId
Description copied from interface:IdGenerator
Generate a new identifier.- Specified by:
generateId
in interfaceIdGenerator
- Returns:
- the generated identifier
-