所以我正在Apache Velocity中创建一个自定义的EventHandler到HTML转义(以及更多)变量和参数。我已经尝试使用默认的转义工具(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
我遗失了一些小事吗?