Reputation: 377
When developing my own Java class to use within ColdFusion 8 I stumble upon a problem that ColdFusion doesn't recognize that the *.java or *.class was changed, at least i don't see the change I made appear on the page. Is it some kind of caching issue?
Upvotes: 2
Views: 389
Reputation: 4555
You might try using the JavaLoader from RIAForge. It lets to specify a JAR or .class file to load. It doesn't even need to be in the classpath so you can store the JAR in with your CFML if you like. I'm pretty sure its not impacted by caching.
http://javaloader.riaforge.org/
Upvotes: 4