A Java id generator to produce random human-readable identifiers like 'fast-elephant-42'
<dependency>
<groupId>com.github.kkuegler</groupId>
<artifactId>human-readable-ids-java</artifactId>
<version>0.3</version>
</dependency>
// create the generator once and use it any number of times, even concurrently across threads
HumanReadableIdGenerator idGen = new PermutationBasedHumanReadableIdGenerator();
String id = idGen.generate();
This project is based on the idea and word lists of human-readable-ids.js