[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[ale] [Marginally On-T]: Tomcat/Java
On Jan 18, 2010, at 10:26 AM, Jeff Hubbs wrote:
> On 1/15/10 4:49 PM, Jim Kinney wrote:
>> the start-up of any app(let) will have a config section
> OK, where can that be viewed?
Usually a classpath for Tomcat's jvm is set in the startup script (see
catalina.sh shipped with Tomcat for an example) and as Jim said, each
individual webapp deployed in Tomcat can further modify that - in ways
that can be application specific, but it's usually the stuff in the
app's WEB-INF/lib and WEB-INF/classes directories.
You can install a JSP file into the webapp with the following single
line to print out the class path:
${applicationScope['org.apache.catalina.jsp_classpath']}
And point a browser at that page. This assumes the webapp is running,
of course.