国际化

This commit is contained in:
xuxueli 2018-01-19 16:01:18 +08:00
parent 6f2a5d6c30
commit 25c680a6bf
2 changed files with 11 additions and 9 deletions

View File

@ -1157,7 +1157,7 @@ Tips: 历史版本(V1.3.x)目前已经Release至稳定版本, 进入维护阶段
- 13、任务依赖增强新增任务类型 "流程任务",流程节点可挂载普通类型任务,承担任务依赖功能。现有子任务模型取消;需要考虑任务依赖死循环问题;
- 14、分片任务某一分片失败支持分片转移
- 15、调度中心触发任务后先推送触发队列异步触发然后立即返回。降低quartz线程占用时长。
- 16、调度报表加载速度慢问题
## 七、其他

View File

@ -23,7 +23,10 @@ public class I18nUtil {
private static boolean prop_cache = false;
public static Properties loadI18nProp(){
if (prop_cache && prop == null) {
if (prop_cache && prop != null) {
return prop;
}
try {
Resource resource = new ClassPathResource(i18n_file);
EncodedResource encodedResource = new EncodedResource(resource,"UTF-8");
@ -31,7 +34,6 @@ public class I18nUtil {
} catch (IOException e) {
logger.error(e.getMessage(), e);
}
}
return prop;
}