Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 448990 - www-servers/tomcat - files/tomcat.init:23: CLASSPATH call should include "-d" so that dependent JARs get added automatically
Summary: www-servers/tomcat - files/tomcat.init:23: CLASSPATH call should include "-d"...
Status: RESOLVED WONTFIX
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] Java (show other bugs)
Hardware: All Linux
: Normal normal (vote)
Assignee: Java team
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-12-28 06:32 UTC by Alexander Hoogerhuis
Modified: 2013-02-19 07:50 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Alexander Hoogerhuis 2012-12-28 06:32:44 UTC
/etc/init.d/tomcat-6, line 23 should include "-d" so that dependant JARs get added automagically to the classpath. 


Reproducible: Always
Comment 1 Ralph Sennhauser (RETIRED) gentoo-dev 2013-01-11 12:29:49 UTC
Adding -d has it's downside too, it usually pulls in a lot more than you want often with no ill effect. However, if things go wrong, for example a "can't find class error" is a lot easier to read, debug and solve than some other vendor specific error gibberish due to using different versions of the same library at the same time resulting in symbol collisions and other funny stuff.

Adding -d has also the effect that updating or reconfiguring a system installed package somewhere down the dependency chain may change the classpath of your server drastically making things rather complex to predict. And that by default?

There is also the aspect of someone wanting as few jars as possible on the global / common classpath. Adding is easier than removing.

Last but not least it's perfectly fine to run java-config in the corresponding /etc/conf.d/tomcat-6 to construct a TOMCAT_EXTRA_CLASSPATH.

To sum up, a meager "should include -d' isn't convincing enough.
Comment 2 Ralph Sennhauser (RETIRED) gentoo-dev 2013-02-19 07:50:38 UTC
If at all we go into the opposite direction. See bug 453212