JAVA如何处理上一篇下一篇_在Java/Spring中,如何优雅地处理缺失的翻译值?

您可以为此创建自己的自定义消息源.

就像是:

public class SpecialMessageSource extends ReloadableResourceBundleMessageSource {

@Override

protected MessageFormat resolveCode(String code,Locale locale) {

MessageFormat result = super.resolveCode(code,locale);

if (result.getPattern().isEmpty() && locale == Locale.CHINESE) {

return super.resolveCode(code,Locale.ENGLISH);

}

return result;

}

@Override

protected String resolveCodeWithoutArguments(String code,Locale locale) {

String result= super.resolveCodeWithoutArguments(code,locale);

if ((result == null || result.isEmpty()) && locale == Locale.CHINESE) {

return super.resolveCodeWithoutArguments(code,Locale.ENGLISH);

}

return result;

}

}

并在spring xml中配置此messageSource bean为

现在要解析Label,您将调用MessageSource的以下方法之一

String getMessage(String code,Object[] args,Locale locale);

String getMessage(String code,String defaultMessage,Locale locale);

当您的消息标签包含参数并且您通过args参数传递这些参数时,将调用resolveCode(),如下所示

invalid.number = {0}无效

并调用messageSource.getMessage(“INVALID_NUMBER”,新对象[] {2d},语言环境)

当您的消息标签没有参数并且将args参数传递为null时,将调用resolveCodeWithoutArguments()

validation.success =验证成功

并调用messageSource.getMessage(“INVALID_NUMBER”,null,locale)

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值