You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
package net.mingsoft.cms.action;
|
|
|
|
|
|
|
|
|
|
import java.util.MissingResourceException;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @Author: 铭飞开源团队--huise
|
|
|
|
|
* @Date: 2019/8/9 20:47
|
|
|
|
|
*/
|
|
|
|
|
public class BaseAction extends net.mingsoft.mdiy.action.BaseAction{
|
|
|
|
|
@Override
|
|
|
|
|
protected String getResString(String key) {
|
|
|
|
|
// TODO Auto-generated method stub
|
|
|
|
|
String str = "";
|
|
|
|
|
try {
|
|
|
|
|
str = super.getResString(key);
|
|
|
|
|
} catch (MissingResourceException e) {
|
|
|
|
|
str = getLocaleString(key,net.mingsoft.cms.constant.Const.RESOURCES);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return str;
|
|
|
|
|
}
|
|
|
|
|
}
|