I'm not all that familiar with Tomcat (yet), so what's the quickest way to get Derby into Tomcat? It wasn't too hard to figure this out with some searching.
It turns out that the 'lib' directory in Tomcat's installation directory is in the class path by default. So, you only need to copy the Derby jar files, derby.jar and derbyclient.jar, to that directory.
Bash:
cp $DERBY_HOME/derby{,client}.jar $TOMCAT_INSTALL/lib
No comments:
Post a Comment