Package railo.runtime.listener

Examples of railo.runtime.listener.JavaSettings


      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());
    }
View Full Code Here

TOP

Related Classes of railo.runtime.listener.JavaSettings

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.