代码生成工具-解读(1)

引言:  
   这里的代码生成工具,实质上就是根据一个xml文件生成.java或者.html文件或者.jsp文件。这里采用了一个工具Anakia,他依赖于Velocity。

效果:
     动态生成一个html文件这个文件是以vsl文件为模版,并且读取了xml文件中的信息来生成的。
这样就可以根据一个xml文件动态生成html、jsp、java文件了,当然这需要自己定义相应的模版文件。

1. 模版文件或者叫样式文件 test.vsl
需要处理的xml文件,动态数据存在的文件 test.xml
  1. <!---->  
  2.     ## Defined variables   
  3.     #set ($bodybg = "#ffffff")   
  4.     #set ($bodyfg = "#000000")   
  5.     #set ($bodylink = "#525D76")   
  6.     #set ($bannerbg = "#525D76")   
  7.     #set ($bannerfg = "#ffffff")   
  8.     #set ($tablethbg = "#039acc")   
  9.     #set ($tabletdbg = "#a0ddf0")   
  10. <!---->  
  11. #document()   
  12. <!---->  
  13. #macro ( image $value )   
  14. #if ($value.getAttributeValue("width"))   
  15. #set ($width=$value.getAttributeValue("width"))   
  16. #end   
  17. #if ($value.getAttributeValue("height"))   
  18. #set ($height=$value.getAttributeValue("height"))   
  19. #end   
  20. #if ($value.getAttributeValue("align"))   
  21. #set ($align=$value.getAttributeValue("align"))   
  22. #end   
  23. <img src="$relativePath$value.getAttributeValue("src")" width="$!width" height="$!height" align="$!align">  
  24. #end   
  25. #macro (document)   
  26.     <html>  
  27.         <head>  
  28.             <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>  
  29.         head>  
  30.         <body bgcolor="$bodybg" text="$bodyfg" link="$bodylink">  
  31.             <table border="1">  
  32.                 <tr>  
  33.                 <td>  
  34. sdsd   
  35.                 td>  
  36.                 <td>  
  37.                 #set ($allSections = $xpath.applyTo("body/section", $root))   
  38.                 #foreach ( $section in $allSections )   
  39.                     #foreach ( $item in $section.getChildren() )   
  40.                         #if ($item.getName().equals("img"))   
  41.                             #image ($item)   
  42.                         #else   
  43.                             $xmlout.outputString($item)   
  44.                         #end   
  45.                     #end   
  46.                 #end   
  47.                 td>  
  48.                 tr>  
  49.             table>  
  50.         body>  
  51.     html>  
  52. #end   

2. 公共数据所在文件 test.xml
  1. <!---->xml version="1.0" encoding="UTF-8"?>  
  2. <document>  
  3. <body>  
  4.   <section name="Section 1">  
  5. <p>  
  6. This is an example template that gets processed.   
  7. p>  
  8. <img src="/images/velocity.gif" width="329" height="105"/>  
  9. <table border="1">  
  10. <tr>  
  11.     <td>  
  12.         It even has a table in it!   
  13.     td>  
  14. tr>  
  15. table>  
  16. <h3>And an h3 tagh3>  
  17.   section>  
  18.     <section name="Section 2">  
  19.     <p> here is another section p>  
  20.     section>  
  21.     <section name="section 3">  
  22.     <p><a href="./about/index.html">A link to a sub pagea>p>  
  23.     section>  
  24. body>  
  25. document>  

3.  build.xml
  1. <!---->xml version="1.0" encoding="UTF-8"?>  
  2. <project name="build-site" default="docs" basedir=".">  
  3.   
  4.     <!---->  
  5.     <property name="project.name"   value="site"/>  
  6.     <property name="docs.src" value="../xdocs"/>  
  7.     <property name="docs.dest" value="../docs"/>  
  8.   
  9.     <!---->  
  10.     <path id="classpath">  
  11.         <fileset dir="../../../build/lib">  
  12.             <include name="**/*.jar"/>  
  13.         fileset>  
  14.         <fileset dir="../../../bin">  
  15.             <include name="**/*.jar"/>  
  16.         fileset>  
  17.     path>  
  18.   
  19.     <target name="prepare">  
  20.         <available classname="org.apache.velocity.anakia.AnakiaTask"  
  21.                     property="AnakiaTask.present">  
  22.            <classpath refid = "classpath"/>  
  23.         available>  
  24.     target>  
  25.   
  26.     <target depends="prepare" name="prepare-check" unless="AnakiaTask.present">  
  27.         <echo>  
  28.             ERROR : AnakiaTask is not present! Please check to make sure that   
  29.             velocity.jar is in your classpath.   
  30.         echo>  
  31.     target>  
  32.   
  33.     <target name="docs" depends="prepare-check" if="AnakiaTask.present">  
  34.         <taskdef name="anakia"  
  35.             classname="org.apache.velocity.anakia.AnakiaTask">  
  36.            <classpath refid = "classpath"/>  
  37.         taskdef>  
  38.         <anakia basedir="${docs.src}" destdir="${docs.dest}/"  
  39.              extension=".html" style="./test.vsl"  
  40.              excludes="**/stylesheets/**"  
  41.              includes="**/test.xml"  
  42.              lastModifiedCheck="true"  
  43.              templatePath="../xdocs/stylesheets"  
  44.         >  
  45.         anakia>  
  46.   
  47.         <copy todir="${docs.dest}/images" filtering="no">  
  48.             <fileset dir="${docs.src}/images">  
  49.                 <include name="**/*.gif"/>  
  50.                 <include name="**/*.jpeg"/>  
  51.                 <include name="**/*.jpg"/>  
  52.             fileset>  
  53.         copy>  
  54.         <!---->
  55.         <copy todir="${docs.dest}" filtering="no">  
  56.             <fileset dir="${docs.src}">  
  57.                 <include name="**/*.css"/>  
  58.             fileset>  
  59.         copy>  
  60.         -->  
  61.     target>  
  62. project>  

 总结:
  可见只要你提取出代码中的公共信息,将其定义为模版这样就可以利用一个xml文件生成出所需的文件了。 

你可能感兴趣的:(apache,html,xml,jsp,velocity)