Zhiqim Admin(简版的管理台)是从知启蒙管理台分离出来,保留系统参数表、系统菜单表、操作员、操作日志,去除组织、部门、角色等复杂权限功能,仅保留操作员独立权限功能。系统设计时保留ZmrSessionUser和ZmrOperator类,方便以后升级到知启蒙管理台。
森中灵 最后提交于6月前 整理V8.0.6
MainAction.java2KB
/*
* 版权所有 (C) 2015 知启蒙(ZHIQIM) 保留所有权利。[遇见知启蒙,邂逅框架梦]
*
* https://zhiqim.org/project/zhiqim_components/zhiqim_admin.htm
*
* Zhiqim Admin is licensed under Mulan PSL v2.
* You can use this software according to the terms and conditions of the Mulan PSL v2.
* You may obtain a copy of Mulan PSL v2 at:
* http://license.coscl.org.cn/MulanPSL2
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
* EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
* MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
* See the Mulan PSL v2 for more details.
*/
package org.zhiqim.manager.action;
import java.lang.management.ManagementFactory;
import java.lang.management.OperatingSystemMXBean;
import java.lang.management.RuntimeMXBean;
import org.zhiqim.httpd.HttpRequest;
import org.zhiqim.httpd.context.core.Action;
import org.zhiqim.kernel.util.DateTimes;
import org.zhiqim.manager.ZmrBootstrap;
/**
* 登录后主页
*
* @version v1.0.0 @author zouzhigang 2015-5-29 新建与整理
*/
public class MainAction implements Action
{
public void execute(HttpRequest request) throws Exception
{
Runtime rt = Runtime.getRuntime();
long use = (rt.totalMemory() - rt.freeMemory()) / 1024 / 1024;
long max = rt.maxMemory() / 1024 / 1024;
OperatingSystemMXBean system = ManagementFactory.getOperatingSystemMXBean();
String systemVersion = system.getName() + " " + system.getVersion();
RuntimeMXBean runtime = ManagementFactory.getRuntimeMXBean();
String pidName = ZmrBootstrap.getPidName();
String jdkVersion = runtime.getVmName() + " " + runtime.getVmVersion();
String startTime = DateTimes.toDateTimeString(runtime.getStartTime());
long uptime = runtime.getUptime();
long day = uptime / (24 * 3600 * 1000);
long hour = (uptime % (24 * 3600 * 1000)) / (3600 * 1000);
long min = (uptime % (3600 * 1000)) / (60 * 1000);
long sec = (uptime % (60 * 1000)) / 1000;
request.setAttribute("use", use);
request.setAttribute("max", max);
request.setAttribute("pidName", pidName);
request.setAttribute("systemVersion", systemVersion);
request.setAttribute("jdkVersion", jdkVersion);
request.setAttribute("startTime", startTime);
request.setAttribute("day", day);
request.setAttribute("hour", hour);
request.setAttribute("min", min);
request.setAttribute("sec", sec);
}
}