mirror of https://gitee.com/stylefeng/roses
【8.3.3】【sys】【cache】更新角色名称的缓存过期时间
parent
767158fc15
commit
6ab35c8503
|
@ -7,6 +7,8 @@ import cn.stylefeng.roses.kernel.rule.format.BaseSimpleFieldFormatProcess;
|
|||
|
||||
/**
|
||||
* 针对文件id的包装处理,返回文件可以访问的地址和文件的名称
|
||||
* <p>
|
||||
* 通过缓存加速获取文件信息
|
||||
*
|
||||
* @author fengshuonan
|
||||
* @since 2023/11/13 17:49
|
||||
|
|
|
@ -7,6 +7,8 @@ import cn.stylefeng.roses.kernel.rule.format.BaseSimpleFieldFormatProcess;
|
|||
|
||||
/**
|
||||
* Json响应,针对返回的文件信息,响应一个文件的具体url
|
||||
* <p>
|
||||
* 通过缓存加速获取文件详情
|
||||
*
|
||||
* @author fengshuonan
|
||||
* @since 2023/3/28 9:30
|
||||
|
|
|
@ -7,6 +7,8 @@ import cn.stylefeng.roses.kernel.sys.api.SysRoleServiceApi;
|
|||
|
||||
/**
|
||||
* JSON响应对角色id的转化
|
||||
* <p>
|
||||
* 通过缓存加快角色名称获取
|
||||
*
|
||||
* @author fengshuonan
|
||||
* @since 2023/5/4 21:20
|
||||
|
|
|
@ -354,7 +354,7 @@ public class SysRoleServiceImpl extends ServiceImpl<SysRoleMapper, SysRole> impl
|
|||
sysRoleLambdaQueryWrapper.select(SysRole::getRoleName);
|
||||
SysRole sysRole = this.getOne(sysRoleLambdaQueryWrapper, false);
|
||||
if (sysRole != null) {
|
||||
this.roleNameCache.put(roleId.toString(), sysRole.getRoleName());
|
||||
this.roleNameCache.put(roleId.toString(), sysRole.getRoleName(), SysConstants.DEFAULT_SYS_CACHE_TIMEOUT_SECONDS);
|
||||
return sysRole.getRoleName();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue