You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
It is possible to add paths via file objects or strings. Internally, they are converted to URLs. But it is not possible add URLs directly to the datapath, e.g. JAR URLs.
Describe the solution you'd like
I would like to be able to add any URL to the datapath given that the resource manager internally manages everything as URLs anyway.
Describe alternatives you've considered
It might be considered to allow adding additional kinds of resources like JAR files or such.
It would also be possible to use an aggregate classloader instead and make resources available through that. However, that classloader would then also always be used to load extension classes and we might want keep loading extension classes (executable-code) and (data) resources separate from each other.
The text was updated successfully, but these errors were encountered:
- Added methods to set the datapath using URLs
- Added support for URLs to the setDataPathElements(String...) method
- Deprecated methods that return the datapath in a way that is not URLs
- Added more unit tests
- Cleaning up code a bit
- Added methods to set the datapath using URLs
- Added support for URLs to the setDataPathElements(String...) method
- Deprecated methods that return the datapath in a way that is not URLs
- Added more unit tests
- Cleaning up code a bit
Is your feature request related to a problem? Please describe.
It is possible to add paths via file objects or strings. Internally, they are converted to URLs. But it is not possible add URLs directly to the datapath, e.g. JAR URLs.
Describe the solution you'd like
I would like to be able to add any URL to the datapath given that the resource manager internally manages everything as URLs anyway.
Describe alternatives you've considered
It might be considered to allow adding additional kinds of resources like JAR files or such.
It would also be possible to use an aggregate classloader instead and make resources available through that. However, that classloader would then also always be used to load extension classes and we might want keep loading extension classes (executable-code) and (data) resources separate from each other.
The text was updated successfully, but these errors were encountered: