Spring Security: Allow page views for all Fully Authenticated users, unless they have a specific role
问题 I'm using Spring 3.0.3 with Spring Security. So, I have fairly lenient restrictions on an app I'm making. I only want to make sure that a person can log in and be authenticated in order to view the app. I don't want to grant roles to every potential user of this app (could be in the 10s of thousands). So, it's been fine to use: <security:intercept-url pattern="/**" access="isFullyAuthenticated()" requires-channel="https"/> But now I want to be able to restrict people from using the app if I