All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.mingsoft.cms.action.BaseAction Maven / Gradle / Ivy

There is a newer version: 5.4.2
Show newest version
/**
 * Copyright (c) 2020 铭软科技(mingsoft.net)
 * 本软件及相关文档文件(以下简称“软件”)的版权归 铭软科技 所有
 * 遵循铭软科技《保密协议》
 */

package net.mingsoft.cms.action;

import java.util.MissingResourceException;

/**
 * @Author: 铭飞开源团队--huise
 * @Date: 2019/8/9 20:47
 */
public class BaseAction extends net.mingsoft.basic.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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy