ClearCachedAuthenticationInfo Широ является нулевым - PullRequest
0 голосов
/ 25 апреля 2018

Когда shiro выполняет clearCachedAuthenticationInfo, возникают следующие проблемы:

protected void clearCachedAuthenticationInfo(PrincipalCollection principals) {
    if (!CollectionUtils.isEmpty(principals)) {
        // return null
        Cache<Object, AuthenticationInfo> cache = this.getAvailableAuthenticationCache(); 
        if (cache != null) {
            Object key = this.getAuthenticationCacheKey(principals);
            cache.remove(key);
        }
    }

}

нажмите меня, чтобы увидеть картинку

Вызванный сеанс не может быть очищен, поиск решения

...