Problem with Apache Commons Id UUID Version 1 generation

Posted by Pekka Mattila on Stack Overflow See other posts from Stack Overflow or by Pekka Mattila
Published on 2009-12-08T08:10:01Z Indexed on 2010/04/04 16:43 UTC
Read the original article Hit count: 393

Filed under:
|
|
|
|

My problem is to generate version 1 UUIDs. We use Jetty 6.x, Maven (to start Jetty among other things) and Apache Commons ID (to generate UUID version 1 from the current time).

Apache Commons ID requires a configuration file that is told to the JVM, using a parameter, e.g. 'org.apache.commons.id.uuid.config.resource.filename=commons-id-uuid.xml'. I checked the Apache Commons ID code and it tries to find the file from the classpath. Jetty's documentation states that WEB-INF/lib and WEB-INF/classes are in the classpath. The 'commons-id-uuid.xml' can be found from the deployed war file from the root of WEB-INF/classes directory but Jetty cannot load it:

Message: java.lang.RuntimeException: 
java.lang.IllegalStateException: commons-id-uuid.xml loaded as system resource is null

Jetty was started using the following command:

mvn jetty:run -Dorg.apache.commons.id.uuid.config.resource.filename=commons-id-uuid.xml

Any idea what is going wrong? We just need to generate UUID version 1 identifiers. Any suggestions?

© Stack Overflow or respective owner

Related posts about java

Related posts about uuid