23 lines
582 B
Java
23 lines
582 B
Java
package com.suelec.permission.shiro;
|
|
|
|
import com.suelec.permission.service.RedisService;
|
|
import org.apache.shiro.cache.Cache;
|
|
import org.apache.shiro.cache.CacheException;
|
|
import org.apache.shiro.cache.CacheManager;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
/**
|
|
* 缓存管理器
|
|
*/
|
|
public class RedisCacheManager implements CacheManager {
|
|
|
|
// 注入 redis
|
|
@Autowired
|
|
private RedisService redisService;
|
|
|
|
@Override
|
|
public <K, V> Cache<K, V> getCache(String s) throws CacheException {
|
|
return new RedisCache<>(redisService);
|
|
}
|
|
}
|