Generating Jena Bnode IDs
问题 Is there a way to override Jena's default method for generating anonymous node IDs? Ideally, I'd like to pass Jena a functor that would generate IDs so that I can make them globally unique (rather than just unique to the machine). The functor should be used whenever an AnonId is constructed. public interface IdGenerator { public String createId() { // create a globally unique ID ... return uid; } } This is somewhat related to my previous question. Edit : I realize that AnonId has a