【发布时间】:2013-11-12 10:42:54
【问题描述】:
我有一个关于 Spring Security 的问题,涉及到:
<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。
谢谢。
【问题讨论】:
标签: java spring spring-mvc spring-security profile