noobsaibot
noobsaibot

Reputation: 377

Java class cached in ColdFusion

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

Answers (2)

ryber
ryber

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

goddva
goddva

Reputation: 106

Make sure that "HotDeploy" is not turned off... :)

Upvotes: 2

Related Questions