连字符处理Apache Velocity 2.1-这是Bug吗?

时间:2019-04-16 05:34:20

标签: java templates velocity

我在Apache Velocity邮件列表中提出了这个问题,但是我没有收到回复,因此我将其重新张贴在这里...

我正在使用新发布的Apache Velocity 2.1,并且正在测试连字符作为标识符名称,但是遇到错误或其他问题?我已经设置了属性Velocity.PARSER_HYPHEN_ALLOWED,但是只允许在单个数据上使用,而不能在地图或集合数据上使用。

我有这个模板:

hello-world.properties.vm 
---------------------------------------------------------- 
Slash: ${sample-slash}
Slash in a Map: ${map.sample-slash}

我有这个示例测试用例:

public class ApacheVelocityTest {
    private final String RESOURCES_DIR = "src/test/resources";

    @Test
    public void testVelocity() {
        Path templatePath = Paths.get(RESOURCES_DIR, "templates", "hello-world.properties.vm");


        VelocityEngine ve = new VelocityEngine();
        ve.setProperty(Velocity.PARSER_HYPHEN_ALLOWED, true);

        ve.init();
        Template t = ve.getTemplate(templatePath.toString());

        VelocityContext context = new VelocityContext();

        context.put("sample-slash", "SLASH");

        Map<String, String> sampleData = createData();
        context.put("map", sampleData);

        StringWriter writer = new StringWriter();
        t.merge(context, writer);

        System.out.println(writer.toString());
    }

    public Map<String, String> createData() {
        Map<String, String> mapData = new HashMap<String, String>();

        mapData.put("sample-slash", "USER1");

        return mapData;

    }
}

现在,第一个“ sample-slash”已正确呈现,但java映射中的第一个“ ..”却抛出了这样的错误:


org.apache.velocity.exception.ParseErrorException: Encountered "-slash}" at src\test\resources\templates\hello-world.properties.vm[line 5, column 22]
Was expecting one of:
    "[" ...
    "|" ...
    "}" ...
    "}" ...

    at org.apache.velocity.Template.process(Template.java:154)

嵌入到Java映射中的对象引发了解析器异常。

此开发人员是否有任何解决方法?任何指针,不胜感激。

1 个答案:

答案 0 :(得分:0)

这是2.1版中的parser.allow_hyphen_in_identifiers向后兼容模式的错误。

您可以通过以下方法解决此问题:

$map.get("sample-slash")

$map["sample-slash"]

该错误已在主要开发分支中修复。