用spring安全框架实现java登录验证

package com.offcn.core.service;

import com.offcn.core.brand.SellerService;

import com.offcn.core.pojo.seller.Seller;
import org.springframework.security.core.GrantedAuthority;
import org.springframework.security.core.authority.SimpleGrantedAuthority;
import org.springframework.security.core.userdetails.User;
import org.springframework.security.core.userdetails.UserDetails;
import org.springframework.security.core.userdetails.UserDetailsService;
import org.springframework.security.core.userdetails.UsernameNotFoundException;

import java.util.ArrayList;

public class UserDetailServiceImpl implements UserDetailsService {

private SellerService sellerService;

public void setSellerService(SellerService sellerService) {
    this.sellerService = sellerService;
}

@Override
public UserDetails loadUserByUsername(String username) throws UsernameNotFoundException {

    ArrayList<GrantedAuthority> authorities = new ArrayList<>();
    authorities.add(new SimpleGrantedAuthority("ROLE_SELLER"));
    //判断用户名是否为空
    if (username==null){
        return null;
    }
    //查询表里是否有这个数据
    Seller seller = sellerService.findOne(username);
    //判断商家的审核状态是否通过
    if ("1".equals(seller.getStatus())){
              //返回的user对象包含账号,密码,
              access:设置角色  角色命名 ROLE_角色名称  如:  ROLE_USER  
              //	<intercept-url pattern="/**" access="ROLE_SELLER"/>
              就是只有这个角色才不拦截,
              返回对象
        return  new User(username,seller.getPassword(),authorities);
    }

    return null;
}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值