shiro报错:No SecurityManager accessible to the calling code, either bound to the org.apache.shiro.util

一、问题描述

shiro报错:No SecurityManager accessible to the calling code, either bound to the org.apache.shiro.util_第1张图片

二、解决办法

我的原因并不是shirofilter谁先谁后的问题也不是shirofilter写在哪里的问题,通过观察日志找到对应的错误类的方法
改成如下,问题解决。

public static Long getUserId() {
		// if (null != getAuthUser()) {
		// return getAuthUser().getUserId();
		// }
		return 1L;
		// return getAuthUser().getUserId();
	}

你可能感兴趣的:(shiro,shiro)