SpringBoot #3:spring boot集成spring-boot-starter-security & jjwt實(shí)現(xiàn)權(quán)限驗(yàn)證

這篇文章是建立在第一篇,spring boot住在jpa, swagger2, loggin绪钥,第二篇刀森,springboot集成redis緩存基礎(chǔ)上的,這里主要介紹如何使用jwt & spring-boot-starter-security實(shí)現(xiàn)api的保護(hù)俏讹。

RESTful資源是無(wú)狀態(tài)的当宴,但是我們寫的API可能也不會(huì)是讓人隨意調(diào)畜吊,所以要給API加上調(diào)用權(quán)限驗(yàn)證,為了能更好的適用移動(dòng)端户矢、h5玲献、或其它終端調(diào)用,我選擇jwt配合spring-boot-starter-security來(lái)驗(yàn)證。

jwt-struct.jpg

客戶端發(fā)送用戶驗(yàn)證信息到服務(wù)器捌年,服務(wù)器根據(jù)用戶信息生成一段加密的密文(Token)瓢娜,驗(yàn)證通過后,客戶端的所有請(qǐng)求都在http header中附加上token礼预。至于jwt的原理些這里就不詳細(xì)介紹了眠砾,感興趣的可以搜一搜。

下面介紹怎么在項(xiàng)目里進(jìn)行配制托酸,把a(bǔ)pi難使用起來(lái)褒颈。

  • 添加引用

在*.gradle文件中添加jjwt和security的引用

compile ("org.springframework.boot:spring-boot-starter-security")
compile ("io.jsonwebtoken:jjwt:${jjwtVersion}")
  • 在application.yml中配置jwt的一些值
#jwt
jwt:
  header: Authorization
  secret: yoursecret
  expiration: 604800
  tokenHead: "Bearer "
  • 配制security適配器
package leix.lebean.sweb.common.config;

import leix.lebean.sweb.auth.secruity.AuthenticationEntryPoint;
import leix.lebean.sweb.auth.secruity.AuthenticationTokenFilter;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.http.HttpMethod;
import org.springframework.security.config.annotation.authentication.builders.AuthenticationManagerBuilder;
import org.springframework.security.config.annotation.method.configuration.EnableGlobalMethodSecurity;
import org.springframework.security.config.annotation.web.builders.HttpSecurity;
import org.springframework.security.config.annotation.web.builders.WebSecurity;
import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity;
import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;
import org.springframework.security.config.http.SessionCreationPolicy;
import org.springframework.security.core.userdetails.UserDetailsService;
import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder;
import org.springframework.security.crypto.password.PasswordEncoder;
import org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter;

/**
 * Name:WebSecurityConfig
 * Description:
 * Author:leix
 * Time: 2017/6/12 10:06
 */
@SuppressWarnings("SpringJavaAutowiringInspection")
@Configuration
@EnableWebSecurity
@EnableGlobalMethodSecurity(prePostEnabled = true)
public class WebSecurityConfig extends WebSecurityConfigurerAdapter {
    @Autowired
    private AuthenticationEntryPoint unauthorizedHandler;

    @Autowired
    private UserDetailsService userDetailsService;

    @Autowired
    public void configureAuthentication(AuthenticationManagerBuilder authenticationManagerBuilder) throws Exception {
        authenticationManagerBuilder
                .userDetailsService(this.userDetailsService)
                .passwordEncoder(passwordEncoder());
    }

    @Bean
    public PasswordEncoder passwordEncoder() {
        return new BCryptPasswordEncoder();
    }

    @Bean
    public AuthenticationTokenFilter authenticationTokenFilterBean() throws Exception {
        return new AuthenticationTokenFilter();
    }

    @Override
    public void configure(WebSecurity web) throws Exception {
        web.ignoring()
                .antMatchers(HttpMethod.POST, "/users")
                .antMatchers("/", "/auth/**", "/resources/**", "/static/**", "/public/**", "/webui/**", "/h2-console/**"
                        , "/configuration/**", "/swagger-ui/**", "/swagger-resources/**", "/api-docs", "/api-docs/**", "/v2/api-docs/**"
                        , "/*.html", "/**/*.html", "/**/*.css", "/**/*.js", "/**/*.png", "/**/*.jpg", "/**/*.gif", "/**/*.svg", "/**/*.ico", "/**/*.ttf", "/**/*.woff");
    }

    @Override
    protected void configure(HttpSecurity httpSecurity) throws Exception {
        httpSecurity
                // 由于使用的是JWT,我們這里不需要csrf
                .csrf().disable()
                .exceptionHandling().authenticationEntryPoint(unauthorizedHandler).and()
                // 基于token励堡,所以不需要session
                .sessionManagement().sessionCreationPolicy(SessionCreationPolicy.STATELESS).and()
                .authorizeRequests()
                // 允許對(duì)于網(wǎng)站靜態(tài)資源的無(wú)授權(quán)訪問
                .antMatchers(
                        HttpMethod.GET,
                        "/",
                        "/*.html",
                        "/favicon.ico",
                        "/**/*.html",
                        "/**/*.css",
                        "/**/*.js"
                ).permitAll()
                // 除上面外的所有請(qǐng)求全部需要鑒權(quán)認(rèn)證
                .anyRequest().authenticated();

        // 添加JWT filter
        httpSecurity.addFilterBefore(authenticationTokenFilterBean(), UsernamePasswordAuthenticationFilter.class);
        // 禁用緩存
        httpSecurity.headers().cacheControl();
    }
}

  • 新建一個(gè)auth的業(yè)務(wù)模塊

創(chuàng)建與驗(yàn)證業(yè)務(wù)相關(guān)的模塊auth谷丸,并在auth中實(shí)現(xiàn)用戶的驗(yàn)證、token的刷新应结。

AuthController

package leix.lebean.sweb.auth;

/**
 * Name:AuthController
 * Description:用戶認(rèn)證接口
 * Author:leix
 * Time: 2017/6/12 09:42
 */
@RestController
@Api(value = "認(rèn)證服務(wù)", description = "與用戶認(rèn)證相關(guān)的服務(wù)", position = 1)
public class AuthController extends BaseController {

    @Value("${jwt.header}")
    private String tokenHeader;

    @Autowired
    IAuthService authService;

    @PostMapping("/auth")
    @ApiOperation(value = "用戶認(rèn)證", notes = "用戶信息認(rèn)證服務(wù)刨疼,用戶登錄名與密碼,返回驗(yàn)證結(jié)果")
    @ApiImplicitParam(name = "authentication", value = "用戶登錄信息", dataType = "Authentication")
    public ResponseEntity<AuthenticationResponse> auth(@RequestBody Authentication authentication) {
        String token = authService.login(authentication.getName(), authentication.getPassword());
        return ResponseEntity.ok(new AuthenticationResponse(token));
    }

    @GetMapping("/auth")
    @ApiOperation(value = "刷新TOKEN", notes = "刷新用戶Token服務(wù)")
    public ResponseEntity<AuthenticationResponse> refreshAndGetAuthenticationToken(
            HttpServletRequest request) throws AuthenticationException {
        String token = request.getHeader(tokenHeader);
        String refreshedToken = authService.refresh(token);
        if (refreshedToken == null) {
            return ResponseEntity.badRequest().body(null);
        } else {
            return ResponseEntity.ok(new AuthenticationResponse(refreshedToken));
        }
    }
}

詳細(xì)代碼來(lái)看這里看這里吧鹅龄!源碼@github

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末揩慕,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子扮休,更是在濱河造成了極大的恐慌漩绵,老刑警劉巖,帶你破解...
    沈念sama閱讀 210,914評(píng)論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件肛炮,死亡現(xiàn)場(chǎng)離奇詭異止吐,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)侨糟,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 89,935評(píng)論 2 383
  • 文/潘曉璐 我一進(jìn)店門碍扔,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái),“玉大人秕重,你說我怎么就攤上這事不同。” “怎么了溶耘?”我有些...
    開封第一講書人閱讀 156,531評(píng)論 0 345
  • 文/不壞的土叔 我叫張陵二拐,是天一觀的道長(zhǎng)。 經(jīng)常有香客問我凳兵,道長(zhǎng)百新,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,309評(píng)論 1 282
  • 正文 為了忘掉前任庐扫,我火速辦了婚禮饭望,結(jié)果婚禮上仗哨,老公的妹妹穿的比我還像新娘。我一直安慰自己铅辞,他們只是感情好厌漂,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,381評(píng)論 5 384
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著斟珊,像睡著了一般苇倡。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上囤踩,一...
    開封第一講書人閱讀 49,730評(píng)論 1 289
  • 那天雏节,我揣著相機(jī)與錄音,去河邊找鬼高职。 笑死钩乍,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的怔锌。 我是一名探鬼主播寥粹,決...
    沈念sama閱讀 38,882評(píng)論 3 404
  • 文/蒼蘭香墨 我猛地睜開眼,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼埃元!你這毒婦竟也來(lái)了涝涤?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,643評(píng)論 0 266
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤岛杀,失蹤者是張志新(化名)和其女友劉穎阔拳,沒想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體类嗤,經(jīng)...
    沈念sama閱讀 44,095評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡糊肠,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,448評(píng)論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了遗锣。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片货裹。...
    茶點(diǎn)故事閱讀 38,566評(píng)論 1 339
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖精偿,靈堂內(nèi)的尸體忽然破棺而出弧圆,到底是詐尸還是另有隱情,我是刑警寧澤笔咽,帶...
    沈念sama閱讀 34,253評(píng)論 4 328
  • 正文 年R本政府宣布搔预,位于F島的核電站,受9級(jí)特大地震影響叶组,放射性物質(zhì)發(fā)生泄漏拯田。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,829評(píng)論 3 312
  • 文/蒙蒙 一扶叉、第九天 我趴在偏房一處隱蔽的房頂上張望勿锅。 院中可真熱鬧,春花似錦枣氧、人聲如沸溢十。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,715評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)张弛。三九已至,卻和暖如春酪劫,著一層夾襖步出監(jiān)牢的瞬間吞鸭,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,945評(píng)論 1 264
  • 我被黑心中介騙來(lái)泰國(guó)打工覆糟, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留刻剥,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 46,248評(píng)論 2 360
  • 正文 我出身青樓滩字,卻偏偏與公主長(zhǎng)得像造虏,于是被迫代替她去往敵國(guó)和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子麦箍,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,440評(píng)論 2 348

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