Spring security issue with 404 error?

前端 未结 4 397
梦谈多话
梦谈多话 2020-12-30 08:30

greetings all, i am using spring security 3.0.2, urlRewrite 3.1.0 , and i have a problem with spring security that i have a rule that all the pages in the app requires authe

4条回答
  •  时光说笑
    2020-12-30 09:28

    when you set the attribute access="true", you tell spring-security to check if the user has the security attribute (which is normally a role) named "true" . I don't think that is your goal?

    to bypass security, you may set filters="none" and skip the access attribute:

    see documentation of

提交回复
热议问题