Thymeleaf 字符串模板

发布于 2025-01-09 11:33:52 字数 864 浏览 0 评论 0原文

我无法弄清楚我在这里做错了什么 -

@Test
void should_fill_a_string_template() {
    String template = "Hello ${name}";
    StringTemplateResolver resolver = new StringTemplateResolver();
    Context context = new Context();
    context.setVariable("name","Test");
    TemplateEngine templateEngine = new TemplateEngine();
    templateEngine.setTemplateResolver(resolver);
    String result = templateEngine.process(template, context);
    Assertions.assertEquals("Hello Test",result);
}

我只想在一个普通的旧 java 项目中使用 Thymeleaf 模板处理器,而无需其他依赖项。我需要传入一个字符串(不是要解析的文件)并让模板填充提供的值。

我看到默认行为 此处 表示 StringTemplateResolver 应该只解析作为模板本身传入的字符串,而不是对 模板。

我在这里缺少什么?

I'm having trouble working out what I'm doing wrong here -

@Test
void should_fill_a_string_template() {
    String template = "Hello ${name}";
    StringTemplateResolver resolver = new StringTemplateResolver();
    Context context = new Context();
    context.setVariable("name","Test");
    TemplateEngine templateEngine = new TemplateEngine();
    templateEngine.setTemplateResolver(resolver);
    String result = templateEngine.process(template, context);
    Assertions.assertEquals("Hello Test",result);
}

I just want to use the Thymeleaf template processor in a plain old java project without other dependencies. I need to pass in a String (not a file to be resolved) and have the template filled with the values provided.

I see the default behavior here indicates that the StringTemplateResolver should just resolve the string passed in as the template itself and not a reference to the template.

What am I missing here?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文