类 UiDependencyTool

java.lang.Object
org.apache.velocity.tools.generic.SafeConfig
org.apache.velocity.tools.view.UiDependencyTool

@DefaultKey("depends") @ValidScope("request") public class UiDependencyTool extends SafeConfig
NOTE: This tool is considered "beta" quality due to lack of public testing and is not automatically provided via the default tools.xml file. Tool to make it easier to manage usage of client-side dependencies. This is essentially a simple dependency system for javascript and css. This could be cleaned up to use fewer maps, use more classes, and cache formatted values, but this is good enough for now. To use it, create a ui.xml file at the root of the classpath. Follow the example below. By default, it prepends the request context path and then "css/" to every stylesheet file and the request context path and "js/" to every javascript file path. You can alter those defaults by changing the type definition. In the example below, the file path for the style type is changed to "/styles/", leaving out the {context}. This is safe in request scope, but the group info (from ui.xml) should only be read once. It is not re-parsed on every request.

Example of use:

  Template
  ---
  <html>
    <head>
      $depends.on('profile').print('
      ')
    </head>
  ...

  Output
  ------
  <html>
    <head>
      <style rel="stylesheet" type="text/css" href="css/globals.css"/>
      <script type="text/javascript" src="js/jquery.js"></script>
      <script type="text/javascript" src="js/profile.js"></script>
    </head>
  ...
 

Example tools.xml:

 <tools>
   <toolbox scope="request">
     <tool class="org.apache.velocity.tools.view.beta.UiDependencyTool"/>
   </toolbox>
 </tools>
 

Example ui.xml:

 <ui>
   <type name="style"><![CDATA[<link rel="stylesheet" type="text/css" href="/styles/{file}">]]></type>
   <group name="globals">
     <file type="style">css/globals.css<file/>
   </group>
   <group name="jquery">
     <file type="script">js/jquery.js<file/>
   </group>
   <group name="profile">
     <needs>globals</needs>
     <needs>jquery</needs>
     <file type="script">js/profile.js<file/>
   </group>
 </ui>
 
版本:
$Revision: 16660 $
作者:
Nathan Bubna
  • 字段详细资料

    • GROUPS_KEY_SPACE

      public static final String GROUPS_KEY_SPACE
    • TYPES_KEY_SPACE

      public static final String TYPES_KEY_SPACE
    • SOURCE_FILE_KEY

      public static final String SOURCE_FILE_KEY
      另请参阅:
    • DEFAULT_SOURCE_FILE

      public static final String DEFAULT_SOURCE_FILE
      另请参阅:
  • 构造器详细资料

    • UiDependencyTool

      public UiDependencyTool()
  • 方法详细资料

    • configure

      protected void configure(ValueParser params)
      覆盖:
      configure 在类中 SafeConfig
    • on

      public UiDependencyTool on(String name)
      Adds all the files required for the specified group, then returns this instance. If the group name is null or no such group exists, this will return null to indicate the error.
      参数:
      name - group name
      返回:
      this or null
    • on

      public UiDependencyTool on(String type, String file)
      Adds the specified file to this instance's list of dependencies of the specified type, then returns this instance. If either the type or file are null, this will return null to indicate the error.
      参数:
      type - file type
      file - dependency file
      返回:
      this or null
    • print

      public String print()
      Formats and prints all the current dependencies of this tool, using a new line in between the printed/formatted files.
      返回:
      all dependencies
    • print

      public String print(String typeOrDelim)
      If the parameter value is a known type, then this will format and print all of this instance's current dependencies of the specified type, using a new line in between the printed/formatted files. If the parameter value is NOT a known type, then this will treat it as a delimiter and print all of this instance's dependencies of all types, using the specified value as the delimiter in between the printed/formatted files.
      参数:
      typeOrDelim - type asked for, or delimiter
      返回:
      all dependencies
      另请参阅:
    • print

      public String print(String type, String delim)
      Formats and prints all of this instance's current dependencies of the specified type, using the specified delimiter in between the printed/formatted files.
      参数:
      type - file type
      delim - lines delimiter
      返回:
      list of dependencies for thie type, formatted using delimiter
    • printAll

      public String printAll(String delim)
      Formats and prints all the current dependencies of this tool, using the specified delimiter in between the printed/formatted files.
      参数:
      delim - delimiter
      返回:
      list of dependencies
    • context

      public UiDependencyTool context(String path)
      Sets a custom {context} variable for the formats to use.
      参数:
      path - context path
      返回:
      this
    • getFormat

      public String getFormat(String type)
      Retrieves the configured format string for the specified file type.
      参数:
      type - file type
      返回:
      configured format
    • setFormat

      public void setFormat(String type, String format)
      Sets the format string for the specified file type.
      参数:
      type - file type
      format - format string
    • getDependencies

      public Map<String,List<String>> getDependencies()
      Returns the current dependencies of this instance, organized as an ordered map of file types to lists of the required files of that type.
      返回:
      map of all dependencies
    • getDependencies

      public List<String> getDependencies(String type)
      Returns the List of files for the specified file type, if any.
      参数:
      type - file type
      返回:
      all dependencies for this type
    • getGroupDependencies

      public Map<String,List<String>> getGroupDependencies(String name)
      Returns the dependencies of the specified group, organized as an ordered map of file types to lists of the required files of that type.
      参数:
      name - group name
      返回:
      map of all dependencies for this group
    • toString

      public String toString()
      Returns an empty String to avoid polluting the template output after a successful call to on(String) or on(String,String).
      覆盖:
      toString 在类中 Object
      返回:
      empty string
    • read

      protected void read(String file, boolean required)
      Reads group info out of the specified file and into this instance. If the file cannot be found and required is true, then this will throw an IllegalArgumentException. Otherwise, it will simply do nothing. Any checked exceptions during the actual reading of the file are caught and wrapped as RuntimeExceptions.
      参数:
      file - file
      required - whether this file is required
    • createDigester

      protected org.apache.commons.digester3.Digester createDigester()
      Creates the Digester used by read(java.lang.String, boolean) to create the group info for this instance out of the specified XML file.
      返回:
      new digester
    • format

      protected String format(String format, String value)
      Applies the format string to the given value. Currently, this simply replaces '{file}' with the value. If you want to handle more complicated formats, override this method.
      参数:
      format - format string
      value - dependency file
      返回:
      formatted string
    • getGroup

      protected UiDependencyTool.Group getGroup(String name)
      NOTE: This method may change or disappear w/o warning; don't depend on it unless you're willing to update your code whenever this changes.
      参数:
      name - file name
      返回:
      group this file belongs to, or null
    • makeGroup

      protected UiDependencyTool.Group makeGroup(String name)
      NOTE: This method may change or disappear w/o warning; don't depend on it unless you're willing to update your code whenever this changes.
      参数:
      name - group name
      返回:
      new group
    • addDependencies

      protected void addDependencies(Map<String,List<String>> fbt)
      Adds the specified files organized by type to this instance's current dependencies.
      参数:
      fbt - dependencies map
    • addFile

      protected void addFile(String type, String file)
      Adds a file to this instance's dependencies under the specified type.
      参数:
      type - file type
      file - file name