1

因此,我正在努力为 Apache Velocity 中我的网站上的 HTML 转义(以及更多)变量和参数创建一个自定义 EventHandler。我尝试过使用默认的转义工具(EscapeHtmlReference、EscapeSqlReference 等),但它们并不适合我的所有需求。

因此,我基于 org.apache.velocity.app.event.implement.EscapeSqlReference 创建了自己的 EventHandler,但每次尝试调用它时都会出现转换错误。

我创建的新课程:

public class EscapeXmlPlusReference extends EscapeReference
{

/**
 * Escape all XML entities plus ;.
 *
 * @param text
 * @return An escaped String.
 * @see <a href="http://jakarta.apache.org/commons/lang/api/org/apache/commons/lang/StringEscapeUtils.html#escapeSql(java.lang.String)">StringEscapeUtils</a>
 */
protected String escape(Object text)
{
    return StringEscapeUtils.escapeXml(text.toString().replace(";",""));
}

/**
 * @return attribute "eventhandler.escape.xmlplus.match"
 */
protected String getMatchAttribute()
{
    return "eventhandler.escape.xmlplus.match";
}

}

我的velocity.properties 文件

eventhandler.referenceinsertion.class = gov.location.of.class.security.vtool.EscapeXmlPlusReference
eventhandler.escape.xmlplus.match = /params.*/

但是每次我加载一个页面时,我都会得到一个强制转换异常

Velocity  [error] Could not initialize VelocityEngine - java.lang.ClassCastException: gov.location.of.class.security.vtool.EscapeXmlPlusReference cannot be cast to org.apache.velocity.app.event.EventHandler

我缺少什么小东西吗?

4

0 回答 0