if(res!=null)cache.setEL(KeyConstants._resource, res);
if(tmp!=null)cache.setEL(KeyConstants._template, tmp);
}
// java settings
JavaSettings js = ac.getJavaSettings();
StructImpl jsSct = new StructImpl();
jsSct.put("loadCFMLClassPath",js.loadCFMLClassPath());
jsSct.put("reloadOnChange",js.reloadOnChange());
jsSct.put("watchInterval",new Double(js.watchInterval()));
jsSct.put("watchExtensions",ListUtil.arrayToList(js.watchedExtensions(),","));
Resource[] reses = js.getResources();
StringBuilder sb=new StringBuilder();
for(int i=0;i<reses.length;i++){
if(i>0)sb.append(',');
sb.append(reses[i].getAbsolutePath());
}