Generate UUIDv4 compliant IDs (or use standard java uuid generator)
Confluence User - 18 Apr, 2018
Hi team,
I am running into problems when moving data from Joget into databases that require the unique identifier to be compliant with UUIDv4 / RFC (for example MS SQL uniqueidentifier column).
Would it be possible to give the option at app or system level to switch between how the UUID is generated? For example the UUID service could use the java standard instead:
import java.util.UUID; UUID uuid = UUID.randomUUID(); return uuid.toString();
Cheers,
Eric
system;java;uuid