• 大小: 89.34 KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2025-01-01
  • 语言: 其他
  • 标签: 开发技术  Java  

资源简介

ssm+shiro+redis整合认证权限实现单点登陆仅供开发者参考使用

资源截图

代码片段和文件信息

package com.weiwen.web.config;

import com.google.common.collect.Maps;
import com.weiwen.web.util.PropertiesLoader;

import org.apache.commons.lang3.StringUtils;

import java.util.Map;

/**
 * 全局配置类
 * Created by jiangxingqi on 2017/7/27.
 */
public class Global {

    /**
     * 保存全局属性值
     */
    private static Map map = Maps.newHashMap();

    /**
     * 属性文件加载对象
     */
    private static PropertiesLoader loader = new PropertiesLoader(“jdbc.properties“);

    /**
     * 获取配置
     * @see {fns:getConfig(‘adminPath‘)}
     */
    public static String getConfig(String key) {
        String value = map.get(key);
        if (value == null){
            value = loader.getProperty(key);
            map.put(key value != null ? value : StringUtils.EMPTY);
        }
        return value;
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       1525  2018-11-14 09:38  yg\.classpath

    .......       192  2017-07-31 15:28  yg\.gitignore

     文件       1211  2018-11-14 09:38  yg\.project

     文件        639  2018-11-13 22:17  yg\.settings\.jsdtscope

     文件         57  2018-11-14 09:44  yg\.settings\org.eclipse.core.resources.prefs

     文件        478  2018-11-14 09:38  yg\.settings\org.eclipse.jdt.core.prefs

     文件         90  2018-11-13 22:17  yg\.settings\org.eclipse.m2e.core.prefs

     文件        673  2018-11-14 09:38  yg\.settings\org.eclipse.wst.common.component

     文件        252  2018-11-14 09:38  yg\.settings\org.eclipse.wst.common.project.facet.core.xml

     文件         49  2018-11-13 22:17  yg\.settings\org.eclipse.wst.jsdt.ui.superType.container

     文件          6  2018-11-13 22:17  yg\.settings\org.eclipse.wst.jsdt.ui.superType.name

     文件         50  2018-11-13 22:17  yg\.settings\org.eclipse.wst.validation.prefs

    .......      1737  2017-07-31 15:28  yg\doc\week7i.sql

     文件       6284  2018-11-14 10:28  yg\pom.xml

    .......       527  2017-07-31 15:28  yg\README.md

    .......      3382  2017-07-31 15:28  yg\SpringMVC.iml

     文件        866  2018-11-14 09:45  yg\src\main\java\com\weiwen\web\config\Global.java

     文件       3438  2018-11-14 11:35  yg\src\main\java\com\weiwen\web\controller\controller.java

     文件        898  2018-11-14 11:11  yg\src\main\java\com\weiwen\web\controller\DemoController.java

     文件       5019  2018-11-14 13:17  yg\src\main\java\com\weiwen\web\filter\AuthorizeFilter.java

     文件       7307  2018-11-14 14:00  yg\src\main\java\com\weiwen\web\log\LogAspect.java

     文件        174  2018-11-14 13:53  yg\src\main\java\com\weiwen\web\mapper\RoleDao.java

     文件        162  2018-11-14 13:53  yg\src\main\java\com\weiwen\web\mapper\UserDao.java

     文件       3250  2018-11-14 12:31  yg\src\main\java\com\weiwen\web\security\SystemAuthorizingRealm.java

     文件       1148  2018-11-14 13:53  yg\src\main\java\com\weiwen\web\service\SystemService.java

     文件       1100  2018-11-14 10:19  yg\src\main\java\com\weiwen\web\util\Cache.java

     文件       8146  2018-11-14 10:20  yg\src\main\java\com\weiwen\web\util\CacheManager.java

     文件       2860  2018-11-14 12:21  yg\src\main\java\com\weiwen\web\util\CacheUtils.java

     文件       2135  2018-11-14 12:32  yg\src\main\java\com\weiwen\web\util\Constants.java

     文件        384  2018-11-14 10:22  yg\src\main\java\com\weiwen\web\util\DynamicDataSource.java

............此处省略111个文件信息

评论

共有 条评论