Spring Security 3 specify multiple intercept-url access roles

前端 未结 5 1340
执念已碎
执念已碎 2021-02-05 09:33

I am trying to setup Spring 3 security using JDBC auth. Everything is working fine apart from when I try to specify multiple access roles to an intercept-url. Eg I want anyone w

5条回答
  •  悲哀的现实
    2021-02-05 09:44

    I had the same issue but used expressions to get around this issue:

    You should embed

    use-expressions="true"
    

    in your existing config. So:

    
    

    becomes

    
    

    And then:

    
    

提交回复
热议问题