Opened 14 years ago
Closed 14 years ago
#1594 closed enhancement (fixed)
JarClassLoader support for JARs within JARs
Reported by: | Nicklas Nordborg | Owned by: | Nicklas Nordborg |
---|---|---|---|
Priority: | major | Milestone: | BASE 3.0 |
Component: | core | Version: | |
Keywords: | Cc: |
Description
The JarClassLoader
currently has support for the Class-Path
attribute in the manifest file which makes it possible to reference classes in other JAR files. Installation can be a bit messy since it usually requires copying of multiple JAR files into various subdirectories.
It would be nice if the extra JAR files could be stored inside the main JAR file (eg. in META-INF/lib). This would make installation and handling a lot easier.
This ticket is an independent part of #1592.
Change History (3)
comment:1 by , 14 years ago
Component: | web → core |
---|---|
Milestone: | → BASE 3.0 |
Type: | defect → enhancement |
comment:2 by , 14 years ago
Owner: | changed from | to
---|---|
Status: | new → assigned |
comment:3 by , 14 years ago
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
(In [5622]) Fixes #1594: JarClassLoader support for JARs within JARs
Note:
See TracTickets
for help on using tickets.
My idea is that the JARs inside should be copied to the userfiles directory since the web server already has permission to write to that directory.