|
@@ -8,8 +8,8 @@ import com.gxzc.zen.api.sys.model.SysRolePermission
|
|
|
import com.gxzc.zen.api.sys.model.SysUser
|
|
|
import com.gxzc.zen.api.sys.service.*
|
|
|
import org.springframework.beans.factory.annotation.Autowired
|
|
|
+import org.springframework.cache.annotation.Cacheable
|
|
|
import org.springframework.stereotype.Service
|
|
|
-import springfox.documentation.annotations.Cacheable
|
|
|
import java.util.*
|
|
|
import kotlin.collections.HashSet
|
|
|
|
|
@@ -35,7 +35,7 @@ class SysPermissionServiceImpl : ServiceImpl<SysPermissionMapper, SysPermission>
|
|
|
}
|
|
|
|
|
|
//任何修改用户角色、角色、权限表都清此缓存
|
|
|
- @Cacheable("setPermissions")
|
|
|
+ @Cacheable(value="setPermissions",key = "#userId")
|
|
|
override fun findUserPermissions(userId: Long):HashSet<String> {
|
|
|
// val user=userService?.selectById(userId)
|
|
|
val uroles=userRoleService?.findUserRoles(userId)
|