Zhiqim Account(前端账户管理台)是在ZhiqimManager基础上改造成用于前端注册登录的管理系统,增加组织结构和余额,开放注册组织和组织管理员,可以添加组织内的部门和角色和操作员。并增加该管理台上的一些组件,如充值支付等组件。适用于二级代理管理或该大型组织机构

森中灵 最后提交于7月前 整理为组织方式和替换新的jar
zhiqim.xml3KB
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE zhiqim-config PUBLIC "-//ZHIQIM //DTD Zhiqim-Config Configuration 8.0.0//EN" "https://zhiqim.org/xmldtds/zhiqim_config_8_0_0.dtd">
<zhiqim-config>
    <group id="boot" desc="系统启动配置">
        <item key="name" value="印啦啦" type="protected" desc="系统名称" />
        <item key="version" value="v2023" type="protected" desc="系统版本" />
        <item key="port" value="50080" type="protected" desc="系统监听端口,用于启动监听和命令关闭工程" />
        <item key="process" value="yinlala_v2023" type="protected" desc="使用的进程名" />
        <item key="home" value="d:/Java/jdk1.8.0_202" type="protected" desc="JDK根目录" />
        <item key="args" value="-server -Xms64m -Xmx4096m" type="protected" desc="JVM参数" />
        <item key="libext" value="./libext" type="protected" desc="加载的库目录" />
        <item key="include" value="*/lib/*,*/bin" type="protected" desc="扫描包含库模式,多个用逗号隔开,星号表示通配符" />
    </group>

    <group id="config" desc="系统其他配置文件,./开头表示工程相对路径下,绝对路径使用/或d:\\等">
        <item key="httpd" value="./conf/httpd.xml" type="protected" desc="web配置"/>
        <item key="logging" value="./conf/logging.xml" type="protected" desc="日记配置"/>
    </group>

    <group id="kernel" desc="系统核心属性配置">
        <item key="mobile11" value="^(13[0-9]|14[0|1|4|5|6|7|8|9]|15[0|1|2|3|5|6|7|8|9]|16[1|2|5|6|7|8]|17[0-8]|18[0-9]|19[0|1|2|3|5|6|7|8|9])\d{8}$" type="protected" desc="11位手机号正则表达式" />
    </group>
    
    <group id="service" desc="系统服务配置,有依赖时注意顺序,系统按顺序加载,按倒序销毁">
        <item key="logging" value="org.zhiqim.kernel.logging.LogServer" type="protected" desc="日志服务" />
        <item key="cutter" value="org.zhiqim.kernel.logging.LogLinuxNohupCutter" type="protected" desc="日志Linux切割服务" />
        <item key="orm" value="org.zhiqim.orm.ORMServer" type="protected" desc="主数据库服务" />
        <item key="resource" value="org.zhiqim.httpd.HttpServer" type="protected" desc="WEB服务" />
    </group>
    
    <group id="orm" desc="数据库映射服务">
        <item key="dbType" value="mysql" type="protected" desc="数据库类型,支持oracle|mysql|mssql|sqlite" />
        <item key="driver" value="org.zhiqim.mysql5_1_47.jdbc.Driver" type="protected" desc="数据库驱动" />
        <item key="url" value="jdbc:mysql://127.0.0.1:3306/zhiqim_account?useUnicode=true&amp;characterEncoding=UTF-8" type="protected" desc="数据库Url" />
        <item key="user" value="root" type="protected" desc="数据库用户名" />
        <item key="pass" value="root" type="protected" desc="数据库密码" />
        
        <item key="minPoolSize" value="5" type="protected" desc="线程池最小值" />
        <item key="maxPoolSize" value="100" type="protected" desc="线程池最大值" />
        <item key="maxKeepTime" value="7000" type="protected" desc="每连接最大保持时长,大于该值将重建连接,单位秒" />
    </group>
    
    <group id="orm.cache" desc="数据库缓存表">
        <item key="ZmrParam" value="{name:Day,time:6/7/11}" type="protected" desc="参数表,每天06:07:11刷新一次" />
    </group>
    
</zhiqim-config>