我有一个关于弹簧安全的问题,它是关于:
<authentication-manager>
<authentication-provider>
<user-service>
我需要该用户名可以进行一些与其他用户的其他操作不同的操作,即
User Admin can make: create, read, delete, update.
User A can make: create, read, update.
User B can make: read, delete.
每个用户都是具有不同操作的不同配置文件。
我可以用spring-security做吗?在数据库中类似于:
两个用户都访问相同的页面,但使用不同的操作,例如 www.myApp.com/pageOperation。
谢谢。