gpt4 book ai didi

java - Spring 从属性文件中获取枚举值

转载 作者:搜寻专家 更新时间:2023-10-31 20:11:17 25 4
gpt4 key购买 nike

我有一个枚举,其中值以 utf8 格式显示。因此,我的 jsp View 中存在一些编码问题。有没有办法从我的 messages.properties 文件中获取值。如果我的属性文件中有以下几行怎么办:

shop.first=Первый
shop.second=Второй
shop.third=Третий

我如何将它们注入(inject)到枚举中?

public enum ShopType {    
FIRST("Первый"), SECOND("Второй"), THIRD("Третий");

private String label;

ShopType(String label) {
this.label = label;
}

public String getLabel() {
return label;
}

public void setLabel(String label) {
this.label = label;
}
}

最佳答案

我经常有类似的用例,我通过将键(而不是本地化的值)作为枚举属性来处理。使用 ResourceBundle(或使用 Spring 时的 MessageSource),我可以在需要时解析任何此类本地化字符串。这种方法有两个优点:

  1. 所有本地化字符串都可以存储到一个单独的.properties 文件中,从而消除了 Java 类中的所有编码问题;
  2. 它使代码完全可本地化(事实上,每个语言环境将是一个 .properties 文件)。

这样,您的枚举将如下所示:

public enum ShopType {    
FIRST("shop.first"), SECOND("shop.second"), THIRD("shop.third");

private final String key;

private ShopType(String key) {
this.key = key;
}

public String getKey() {
return key;
}
}

(我删除了 setter,因为枚举属性应该始终是只读的。无论如何,它不再是必需的。)

您的 .properties 文件保持不变。

现在是获取本地化商店名称的时候了...

ResourceBundle rb = ResourceBundle.getBundle("shops");
String first = rb.getString(ShopType.FIRST.getKey()); // Первый

希望这会有所帮助...

杰夫

关于java - Spring 从属性文件中获取枚举值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26250242/

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