Velocity 问题集锦

VelocityServlet的应用:
http://hi.baidu.com/shirdrn/blog/item/a6ab2b012b1f4f031d95832b.html

关于VelocityServlet应用时velocity.properties作为通用属性文件:
http://hi.baidu.com/shirdrn/blog/item/801d85084a413e35e92488d5.html

spring和velocity整合:
http://5do.com.cn/kiven/entry/spring_velocity_integration

基于Velocity的Web应用开发:
http://www.suneca.com/article.asp?id=22

servlet里使用Velocity:
http://www.xuexi.cc/bianchengkaifa/java/2029.htm

servlet里使用Velocity。只要两个步骤就可以实现:
    1)继承org.apache.velocity.servlet.VelocityServlet抽象类:
        public class SampleServlet extends VelocityServlet
    2)仅需实现VelocityServlet类的一个方法handleRequest():
        public Template handleRequest( HttpServletRequest req, HttpServletResponse resp, Context context) {}
          
    这里我们使用了velocity.properties配置文件,通过这个文件我们可以灵活地进行一些运行期的配置, 本例中,我们指定了模板文件和日志文件的位置。
   
    servlet类及相关文件编写
    1)Velocity配置文件 velocity.properties :
    
           # 指定模板文件存放目录   
           file.resource.loader.path = templates
           # 指定日志文件位置
           runtime.log = log/velocity.log
   
           注意一下:键的名字即key是固定的,具体请参考veloctiy开发指南。
   
    2)模板文件 sample.vm :
        <html>
          <head><title>Sample velocity page</title></head>
          <body bgcolor=”#ffffff”>
            <center>
              <h2>Hello,welcome to velocity’s world!</h2>
              <i>Here’s the list of people</i>
              <table cellspacing=”0″ cellpadding=”5″ width=”100%”>
                <tr>
                  <td bgcolor=”#eeeeee” align=”center”>Names</td>
                </tr>
                #foreach ($name in $theList)
                <tr>
                  <td bgcolor=”#eeeeee”>$name</td>
                </tr>
                #end
              </table>
            </center>
          </html>
         
    3)servlet类 SampleServlet.java :
package com.cyberobject.study.velocity.servlet;
import java.io.IOException;
import java.io.FileNotFoundException;
import java.io.FileInputStream;
import java.util.Properties;
import java.util.Vector;
import javax.servlet.ServletConfig;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.ServletException;
import org.apache.velocity.Template;
import org.apache.velocity.context.Context;
import org.apache.velocity.servlet.VelocityServlet;
import org.apache.velocity.app.Velocity;
import org.apache.velocity.exception.ResourceNotFoundException;
import org.apache.velocity.exception.ParseErrorException;
/**
* @version  1.0
* @author
*/
public class SampleServlet extends VelocityServlet
{
protected Properties loadConfiguration(ServletConfig config)throws IOException, FileNotFoundException{
  /*
   *  得到属性配置文件并load它
   */
  String propsFile = config.getInitParameter(INIT_PROPS_KEY);
  Properties p = new Properties();
  if (propsFile != null){
   String realPath = getServletContext().getRealPath(propsFile);
   if (realPath != null){
    propsFile = realPath;
   }
   p.load(new FileInputStream(propsFile));
  }
  /*
   *  设置velocity日志文件在web应用中的位置
   */
  String log = p.getProperty(Velocity.RUNTIME_LOG);
  if (log != null){
   log = getServletContext().getRealPath(log);
   if (log != null)   {
    p.setProperty(Velocity.RUNTIME_LOG, log);
   }
  }
  /*
   *  设置模板文件在web应用中的位置
   */
  String path = p.getProperty(Velocity.FILE_RESOURCE_LOADER_PATH);
  if (path != null){
   path = getServletContext().getRealPath(path);
   if (path != null){
    p.setProperty(Velocity.FILE_RESOURCE_LOADER_PATH, path);
   }
  }
  return p;
}
public Template handleRequest(HttpServletRequest request,HttpServletResponse response,Context ctx){
  String p1 = “Bob”;
  String p2 = “Harold”;
  Vector personList = new Vector();
  personList.addElement(p1);
  personList.addElement(p2);
  /*
   *  将模板数据 list 放置到上下文环境 context 中去
   */
  ctx.put(”theList”, personList);
  /*
   *  获取模板对象,有三种可能产生的异常
   */
  Template outty = null;
  try{
   outty = getTemplate(”sample.vm”);
  } catch (ParseErrorException pee){
   System.out.println(
    “SampleServlet : parse error for template ” + pee);
  }catch (ResourceNotFoundException rnfe){
   System.out.println(”SampleServlet : template not found ” + rnfe);
  }catch (Exception e){
   System.out.println(”Error ” + e);
  }
  return outty;
}
}
    4、 Web应用程序配置文件 web.xml :
<?xml version=”1.0″ encoding=”UTF-8″?>
<!DOCTYPE web-app PUBLIC “-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN” “http://java.sun.com/dtd/web-app_2_3.dtd“>
<web-app id=”WebApp”>
<display-name>VelocityAppWeb</display-name>
<servlet>
  <servlet-name>SampleServlet</servlet-name>
  <display-name>SampleServlet</display-name>
  <servlet-class>com.cyberobject.study.velocity.servlet.SampleServlet</servlet-class>
  <init-param>
   <param-name>org.apache.velocity.properties</param-name>
   <param-value>/WEB-INF/classes/velocity.properties</param-value>
  </init-param>
  <load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
  <servlet-name>SampleServlet</servlet-name>
  <url-pattern>/SampleServlet</url-pattern>
</servlet-mapping>
<welcome-file-list>
  <welcome-file>index.jsp</welcome-file>
</welcome-file-list>
</web-app>
   发布及运行
    编译后,你可以发布到你熟悉的应用服务器中去,如Tomcat等。    在servlet中使用Velocity的步骤和在独立应用程序中是基本相似的:
        1)获得并初始化一个模板引擎;
        2)以模板文件名为参数,调用getTemplate()得到一个模板对象;
        3)创建一个上下文环境对象,并将模板数据放入上下文环境中;
        4)合并(merge)模板和数据并产生一个输出。

你可能感兴趣的:(apache,spring,Web,servlet,velocity)