gpt4 book ai didi

spring - 如何使用批注从Spring Controller中的messages.properties文件访问属性

转载 作者:行者123 更新时间:2023-12-03 11:30:58 25 4
gpt4 key购买 nike

如何使用批注从Spring Controller中的messages.properties文件访问属性。

请提供一个例子。

最佳答案

我用了MessageSource:

@Autowired
private MessageSource messageSource;

...

private EventByDate createDefaultEventByDate(String date, Long barId, String locale) {
Event defaultEvent = new Event();
Locale localeValue = new Locale(locale);
defaultEvent.setTitle(messageSource.getMessage("default.event.title", null, "DefaultTitle", localeValue));
defaultEvent.setText(messageSource.getMessage("default.event.text", null, "DefaultText", localeValue));
...
}

关于spring - 如何使用批注从Spring Controller中的messages.properties文件访问属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14252159/

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