spring security簡單使用以及過濾器和部分源碼實(shí)現(xiàn)

主要實(shí)現(xiàn)

主要通過過濾器實(shí)現(xiàn)某宪,通過一層層攔截來實(shí)現(xiàn)登錄認(rèn)證等操作悼做。主要講一下UsernamePasswordAuthenticationFilterBasicAuthenticationFilter的實(shí)現(xiàn)

// 啟動springboot的時候,控制臺打印的日志囱皿。都是默認(rèn)的過濾器實(shí)現(xiàn)
2019-12-05 18:36:23.748  INFO 10472 --- [           main] o.s.s.web.DefaultSecurityFilterChain     : Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@1115433e,  
org.springframework.security.web.context.SecurityContextPersistenceFilter@21ba2445, 
org.springframework.security.web.header.HeaderWriterFilter@257e0827,  
org.springframework.web.filter.CorsFilter@4fdca00a,  
org.springframework.security.web.authentication.logout.LogoutFilter@7fb48179,  
co.jratil.springsecuritydemo.filter.LoginAuthenticationFilter@513b52af, 
co.jratil.springsecuritydemo.filter.JwtAuthorizationFilter@5a8c93,  
org.springframework.security.web.savedrequest.RequestCacheAwareFilter@69d23296,  
org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@5434e40c,  
org.springframework.security.web.authentication.AnonymousAuthenticationFilter@3bed3315, 
org.springframework.security.web.session.SessionManagementFilter@22752544, 
org.springframework.security.web.access.ExceptionTranslationFilter@78b612c6, 
org.springframework.security.web.access.intercept.FilterSecurityInterceptor@2d55e826]

簡單的demo勇婴,主要通過

  1. 繼承UsernamePasswordAuthenticationFilter來實(shí)現(xiàn)賬號密碼的驗(yàn)證
  2. 繼承BasicAuthenticationFilter來實(shí)現(xiàn)授權(quán)的問題,比如是否登錄嘱腥,和獲取用戶的權(quán)限放入全局的SecurityContext
  3. 需要自定義繼承UserDetailsUserDetailsSevice兩個接口耕渴,來覆蓋默認(rèn)的實(shí)現(xiàn),從而從數(shù)據(jù)庫獲取到所需的用戶和用戶信息

1. 繼承UsernamePasswordAuthenticationFilter過濾器實(shí)現(xiàn)

主要實(shí)現(xiàn)過程:

  1. 先通過過濾器中的attemptAuthentication()方法齿兔,把request中的登錄的賬號密碼取出來橱脸。
  2. 然后通過AuthenticationManagerauthenticate()方法來認(rèn)證,其中默認(rèn)是通過ProviderManager來實(shí)現(xiàn)該方法
  3. ProviderManager中分苇,會循環(huán)獲取到所有可以處理該認(rèn)證的provider添诉,再調(diào)用其authentication()方法來認(rèn)證,默認(rèn)有個AbstractUserDetailsAuthenticationProvider實(shí)現(xiàn)
  4. AbstractUserDetailsAuthenticationProvider中有一個retrieveUser()的虛方法医寿,默認(rèn)通過DaoAuthenticationProvider來實(shí)現(xiàn)
  5. DaoAuthenticationProvider中會獲取到自定義的UserDetrailsService的實(shí)現(xiàn)類栏赴,通過調(diào)用該實(shí)現(xiàn)類中的loadUserByUsername()來獲取到UserDetails的對象。
  6. 最終該對象會放進(jìn)一個UsernamePasswordAuthenticationoken對象中靖秩。
  7. 在認(rèn)證成功后會調(diào)用successfulAuthentication()方法须眷,在里面將token放入header中竖瘾。返回給前端
  8. 失敗則調(diào)用unsuccessfulAuthentication()方法,將錯誤返回
public class LoginAuthenticationFilter extends UsernamePasswordAuthenticationFilter {

    private static final Logger log = LoggerFactory.getLogger(LoginAuthenticationFilter.class);

    private AuthenticationManager authenticationManager;
    private boolean rememberMe = false;

    // 通過構(gòu)造函數(shù)獲取AuthenticationManager,最后主要通過該對象的authenticate來實(shí)現(xiàn)認(rèn)證
    public LoginAuthenticationFilter(AuthenticationManager authenticationManager) {
        this.authenticationManager = authenticationManager;
        super.setFilterProcessesUrl("/auth/login");
    }

    // 重寫方法花颗,過濾器的主要實(shí)現(xiàn)
    @Override
    public Authentication attemptAuthentication(HttpServletRequest request, HttpServletResponse response) throws AuthenticationException {
        ObjectMapper objectMapper = new ObjectMapper();

        try {
            // 從request中獲取json數(shù)據(jù)捕传,就是body中的數(shù)據(jù),前端請求傳入一個LoginUser的Json
            LoginUser loginUser = objectMapper.readValue(request.getInputStream(), LoginUser.class);
            log.info(loginUser.toString());
            this.rememberMe = loginUser.isRememberMe();
            // 設(shè)置一個authentication獲取賬號密碼用來驗(yàn)證
            UsernamePasswordAuthenticationToken authentication = new UsernamePasswordAuthenticationToken(
                    loginUser.getUsername(), loginUser.getPassword()
            );
            // 使用AuthencationManager來實(shí)現(xiàn)認(rèn)證 ---- 1.
            return authenticationManager.authenticate(authentication);
        } catch (IOException e) {
            e.printStackTrace();
            return null;
        }
    }

    /**
     *上面方法認(rèn)證成功后調(diào)用
     */
    @Override
    protected void successfulAuthentication(HttpServletRequest request, HttpServletResponse response, FilterChain chain, Authentication authResult) throws IOException, ServletException {
        // 在下面講到了扩劝,上面的操作最后會將JwtUser對象放入UsernamePasswordAuthenticationToken中
        JwtUser user = (JwtUser) authResult.getPrincipal();
        List<String> roles = user.getAuthorities()
                .stream()
                .map(GrantedAuthority::getAuthority)
                .collect(Collectors.toList());

        String token = JwtUtils.createJwtToken(user.getUsername(), roles, this.rememberMe);
        response.setHeader(SecurityConstant.TOKEN_HEADER, token);
        response.setContentType("text/json;charset=utf-8");
        PrintWriter writer = response.getWriter();
        writer.write(ResultUtils.success(null).toString());
    }
   /**
     *上面方法認(rèn)證失敗后調(diào)用
     */
    @Override
    protected void unsuccessfulAuthentication(HttpServletRequest request, HttpServletResponse response, AuthenticationException failed) throws IOException, ServletException {
        response.sendError(HttpServletResponse.SC_UNAUTHORIZED, failed.getMessage());
    }
}

--- 1.authenticationManager.authencate(authentication)實(shí)現(xiàn)
默認(rèn)spring security會通過ProviderManager來實(shí)現(xiàn)

ProviderManager中的實(shí)現(xiàn)

內(nèi)部會繼續(xù)使用provider.authenticate()方法來實(shí)現(xiàn)乐横。provider會通過循環(huán),找到適合的今野,如果沒定義會有默認(rèn)的實(shí)現(xiàn)葡公。

其中AbstractUserDetailAuthenticationProvider實(shí)現(xiàn)

首先會從緩存中查找是否有UserDetails對象存在,如果沒有會有一個NullUserCache來實(shí)現(xiàn)条霜,返回null
然后再通過retrieveUser()方法催什,其默認(rèn)實(shí)現(xiàn)的DaoAuthenticationProcider來實(shí)現(xiàn)該方法

DaoAuthenticationProvider實(shí)現(xiàn)獲取UserDetails

getUserDetailsService().loadUserByUsername會調(diào)用用戶自己實(shí)現(xiàn)的類來獲取到UserDetails,代碼如下:其中JwtUser是自己設(shè)置的實(shí)現(xiàn)UserDetails的實(shí)現(xiàn)類

@Service
public class UserDetailsServiceImpl implements UserDetailsService {

    // 在config中已經(jīng)設(shè)置了的密碼加密
    @Autowired
    BCryptPasswordEncoder passwordEncoder;

    /** 
      * 下面是自己模擬的數(shù)據(jù)宰睡,具體可以 通過這里傳入的username從數(shù)據(jù)庫中
      * 查詢用戶然后再把用戶的賬號密碼權(quán)限等信息存入JwtUser類中蒲凶,再返回該類
      */
    @Override
    public UserDetails loadUserByUsername(String username) {
        if (!"aa".equals(username)) {
            throw new GlobalException("username" + username +"不存在");
        }
        String password = passwordEncoder.encode("aa");
        JwtUser jwtUser = new JwtUser(1, "aa", password, new ArrayList<GrantedAuthority>() {{
            add(new SimpleGrantedAuthority("ROLE_USER"));
            add(new SimpleGrantedAuthority("ROLE_ADMIN"));
        }});
        return jwtUser;
    }
}

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市拆内,隨后出現(xiàn)的幾起案子旋圆,更是在濱河造成了極大的恐慌,老刑警劉巖麸恍,帶你破解...
    沈念sama閱讀 212,383評論 6 493
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件灵巧,死亡現(xiàn)場離奇詭異,居然都是意外死亡抹沪,警方通過查閱死者的電腦和手機(jī)刻肄,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,522評論 3 385
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來融欧,“玉大人敏弃,你說我怎么就攤上這事≡肓螅” “怎么了麦到?”我有些...
    開封第一講書人閱讀 157,852評論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長欠肾。 經(jīng)常有香客問我瓶颠,道長,這世上最難降的妖魔是什么董济? 我笑而不...
    開封第一講書人閱讀 56,621評論 1 284
  • 正文 為了忘掉前任步清,我火速辦了婚禮,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘廓啊。我一直安慰自己欢搜,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,741評論 6 386
  • 文/花漫 我一把揭開白布谴轮。 她就那樣靜靜地躺著炒瘟,像睡著了一般。 火紅的嫁衣襯著肌膚如雪第步。 梳的紋絲不亂的頭發(fā)上疮装,一...
    開封第一講書人閱讀 49,929評論 1 290
  • 那天,我揣著相機(jī)與錄音粘都,去河邊找鬼廓推。 笑死,一個胖子當(dāng)著我的面吹牛翩隧,可吹牛的內(nèi)容都是我干的樊展。 我是一名探鬼主播,決...
    沈念sama閱讀 39,076評論 3 410
  • 文/蒼蘭香墨 我猛地睜開眼堆生,長吁一口氣:“原來是場噩夢啊……” “哼专缠!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起淑仆,我...
    開封第一講書人閱讀 37,803評論 0 268
  • 序言:老撾萬榮一對情侶失蹤涝婉,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后蔗怠,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體墩弯,經(jīng)...
    沈念sama閱讀 44,265評論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,582評論 2 327
  • 正文 我和宋清朗相戀三年蟀淮,在試婚紗的時候發(fā)現(xiàn)自己被綠了最住。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,716評論 1 341
  • 序言:一個原本活蹦亂跳的男人離奇死亡怠惶,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出轧粟,到底是詐尸還是另有隱情策治,我是刑警寧澤,帶...
    沈念sama閱讀 34,395評論 4 333
  • 正文 年R本政府宣布兰吟,位于F島的核電站通惫,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏混蔼。R本人自食惡果不足惜履腋,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 40,039評論 3 316
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧遵湖,春花似錦悔政、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,798評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至迁沫,卻和暖如春芦瘾,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背集畅。 一陣腳步聲響...
    開封第一講書人閱讀 32,027評論 1 266
  • 我被黑心中介騙來泰國打工近弟, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人挺智。 一個月前我還...
    沈念sama閱讀 46,488評論 2 361
  • 正文 我出身青樓藐吮,卻偏偏與公主長得像,于是被迫代替她去往敵國和親逃贝。 傳聞我的和親對象是個殘疾皇子谣辞,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,612評論 2 350

推薦閱讀更多精彩內(nèi)容