gpt4 book ai didi

java - Thymeleaf设置消息资源不带WEB

转载 作者:行者123 更新时间:2023-12-02 10:07:16 26 4
gpt4 key购买 nike

在这种情况下,没有Web配置,没有Spring MVC,没有Spring Boot等。只是纯应用程序,我想使用Thymeleaf传输静态html资源,并获取String中的内容。

但是,在这种情况下,如何为thymeleaf设置国际消息呢?所以我可以在静态 html 文件中使用像

<h1 th:text="#{messageA}">AAAAA</h1>

最佳答案

您只需要定义一个消息源。例如,在我的 spring 配置中,我有一个 main 方法:

@Configuration
@ComponentScan(basePackages = {"spring.cli.config"})
public class Main {
public static void main(String... args) throws Exception {
ConfigurableApplicationContext spring = new SpringApplicationBuilder(Main.class)
.web(NONE)
.profiles("default")
.run(args);

TemplateEngine engine = (TemplateEngine) spring.getBean("engine");
Context context = new Context();
System.out.println(engine.process("template", context));
}
}

和一个配置文件(在@ComponentScan(basePackages = {"spring.cli.config"})中扫描):

@Configuration
public class Thymeleaf {
@Bean
public MessageSource messageSource() throws Exception {
ReloadableResourceBundleMessageSource res = new ReloadableResourceBundleMessageSource();
res.setBasename("file:src/main/resources/messages");
return res;
}
}

我的项目中有一个文件src/main/resources/messages.properties

# messages.properties
messageA=Hello I am message A

在 html 中:

<h1 th:text="#{messageA}">AAAAA</h1>

决定:

<div>Hello I am message A</div>

关于java - Thymeleaf设置消息资源不带WEB,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55262377/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com