欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

HTTP Status 500 - Failed to evaluate expression 'ROLE_USER'

程序员文章站 2022-07-11 08:28:33
...

## 错误的原因是:如果你开启了springEl表达式:use-expressions=“true”
则要把过滤规则改成
<security:intercept-url pattern="/
" access=“hasRole(‘ROLE_USER’)”/>
如果你的配置如下一样为false

<security:http auto-config=“true” use-expressions=“false”>

则把过滤规则改成:

<security:intercept-url pattern="/**" access="ROLE_USER" />

**