Adobe ColdFusion 9 Multi-Server doesn\'t have the \"JVM and Java Settings\" page in the CF Admin, so to add something to the CF classpath, for a given instance, that instanc
From Christian Cantrell - Engineering Manager and Evangelist, I give you The Definitive Guide to the ColdFusion Classpath (although it is a bit dated)
Here is an excerpt of the portion that I think relates to your setup:
J2EE Deployment
The easiest way to add class or jar files to your class path is to simply drop them in the lib directory where they are automatically picked up. The directory is located at {cf_installation}/servers/lib. These class files will be available to all servers.
You can also make your class files available only to the ColdFusion server by dropping them in “{cf_installation}/servers/default/cfmx/WEB-INF/lib”. (Note that putting them in {cf_installation}/servers/default/cfmx/WEB-INF/cfusion/lib will NOT work.)
You can drop them in any of the Java extension directories. To find a list of the Java extension directories, open the ColdFusion administrator and click on “System Information”. Toward the bottom, you will see a system property called “Java Ext Dirs”. You can put jar and class files in any of those directories to have them picked up by the ColdFusion server.
Another way to do it is to add classes through the JRun Management Console. Open up the console, and under the default server, click on settings, then add your classes to the class path list. (Note you can also click on “ColdFusion MX application” under the default server, then click on settings to make the same changes.)
And finally, once again, you can edit the jvm.config file yourself, however again, I recommend you stick to using one of the methods above.
UPDATE from the comments below
When editing the jvm.config file (option 5), try adding the directory path to the java.class.path=
line in the jvm.config file (at the bottom). Not in the java.args=
as you have done in the posted example.