private static TagCacheImpl instance = null;
public static TagCache getInstance() throws JSCompileException {
if (instance==null)
throw new JSCompileException("Granule cache was loaded not on the server start-up. Recommended to add the parameter <load-on-startup>1<load-on-startup> into servlet configuration in web.xml.");
return instance;
}