| 12345678910111213141516171819202122 |
- 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 = net.mingsoft.cms.constant.Const.RESOURCES.getString(key);
- }
- return str;
- }
- }
|