栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 面试经验 > 面试问答

限制某些数据访问的正确方法是什么

面试问答 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

限制某些数据访问的正确方法是什么

我发现使用

hasPermission
这种要求很方便。特别,

  1. 通过注释配置类来启用方法安全性
    @EnableGlobalMethodSecurity(prePostEnabled = true)
  2. 在控制器中获取客户,然后调用服务方法来传递客户。
  3. 注释服务方法

    @PreAuthorize

    @PreAuthorize("hasPermission(#customer, 'edit')")

    public void updateCustomer(Customer customer, …) {

  4. 您应该已经配置了

    Permissionevaluator
    ,如下所示:

    @Component

    public class PermissionevaluatorImpl implements Permissionevaluator {

    @Override
    public boolean hasPermission(Authentication auth,
    Object entity, Object permission) {

        // return true only if auth has the given    // permission for the customer.    // Current user can be obtained from auth.

    }

    }

  5. 作为一种更简洁的模式,在上述方法中,您可以将权限检查委托给实体类,如下所示:

    baseEntity baseEntity = (baseEntity) entity;

    return entity.hasPermission(Util.getUser(auth), (String) permission);

请参阅此了解更多详情。



转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/443357.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号