def include() {
...
def scriptURI = getClass().getResource(script).toURI()
...
}
The current design works well when cassalog is loaded from the same .war, but in a shared environment where cassalog library might be loaded from a different module, it could be nice if a class or classloader can be passed to include() (or globally on a setter) to define from which CL load those resources.
def include() {
...
def scriptURI = getClass().getResource(script).toURI()
...
}
The current design works well when cassalog is loaded from the same .war, but in a shared environment where cassalog library might be loaded from a different module, it could be nice if a class or classloader can be passed to include() (or globally on a setter) to define from which CL load those resources.