Java class cached in ColdFusion

While developing my own Java class for use in ColdFusion 8, I stumble upon an issue where ColdFusion does not recognize a * .java or * .class change, at least I cannot see the changes I made to the page. Is this some kind of caching issue?

+2


source to share


2 answers


You can try using JavaLoader from RIAForge. It allows you to specify the JAR or .class file to load. It doesn't even have to be on the classpath, so you can store the JAR in your CFML if you like. I'm pretty sure it wasn't affected by caching.



http://javaloader.riaforge.org/

+4


source


Make sure "HotDeploy" is not disabled ... :)



+2


source







All Articles