/**
* This implementation resolves the code in the MessageSource.
* Returns {@code null} if the message could not be resolved.
*/
@Override
protected Object handleGetObject(String key) {
try {
return this.messageSource.getMessage(key, null, this.locale);
}
catch (NoSuchMessageException ex) {
return null;
}
}
MessageSourceResourceBundle.java 文件源码
java
阅读 26
收藏 0
点赞 0
评论 0
项目:lams
作者:
评论列表
文章目录