Class TemplateClassLoader

java.lang.Object
java.lang.ClassLoader
fc.util.pagetemplate.TemplateClassLoader

public class TemplateClassLoader extends ClassLoader
A classloader that loads templates. Each page is loaded by it's own separate ClassLoader.

If a page changes on disk (this is tracked by TemplateMgr), then the new page is loaded by a new instance of this class.

  • Constructor Details

  • Method Details

    • loadClass

      public Class loadClass(String name, boolean resolve) throws ClassNotFoundException
      Loads a class corresponding to a page (i.e., a name that starts with
      invalid reference
      Page.PackageName
      from. Delegates the loading of all other classes to the parent classloader (typically the system classloader).

      If the page suffix is .mp, then a name such as foo/bar/baz.page is loaded from the scratch dir (from /foo/bar/baz.class).

      Parameters:
      name - a relative page path-name (relative to the page root directory), for example foo/bar/my.page or ./my.page
      Throws:
      ClassNotFoundException
    • main

      public static void main(String[] args) throws Exception
      Throws:
      Exception