I’m using SpringMVC, SpringSecurity, Spring, Mybatis for my web application. There are a lot of parallel subsystems(say, different registration system), What I wanna implement is to give each admin(there’re a lot of admins who is under my control) authorization to some subsystems.
For example, there are admin A, B, C, as well as subsystem X, Y, Z, I intend to authorize admin A to subsystem A, B, to authorize admin B to subsystem C, like such. How could I achieve this effect using spring security, is there any article on this issue, or some term for me to google with. Thanks a lot!!
I’m using SpringMVC, SpringSecurity, Spring, Mybatis for my web application. There are a lot
Share
You can set up different base URLs for each subsystem:
Then it well be easy to secure them using intercept-url patterns: