SpringSecurity前傳--與springboot2.0初步集成

??相信大家都知道登錄功能,初級(jí)程序員的腦海里面就是賬號(hào),密碼,登錄按鈕然后到后臺(tái)數(shù)據(jù)庫查詢一下信息就OK了。但其實(shí)登錄沒有這么簡(jiǎn)單该肴,因?yàn)椋?/p>

1.我們所面臨的登錄認(rèn)證模式很復(fù)雜

  • 1.1短信的登錄
  • 1.2微信的登錄
  • 1.3QQ的登錄

2.我們要支持多種前端渠道

  • 2.1網(wǎng)頁登錄
  • 2.2APP登錄

3.支持集群環(huán)境,跨應(yīng)用工作藐不,Session控制匀哄,控制用戶權(quán)限,說防護(hù)與身份認(rèn)證相關(guān)的攻擊

??認(rèn)證和授權(quán)如此復(fù)雜雏蛮,因此也誕生了作者對(duì)SpringSecurity系列的學(xué)習(xí)涎嚼。本系列將主要從SpringSecurity,Spring Social,Spring Security OAuth來給大家進(jìn)行講解。其中SpringSecurity作為底層的實(shí)現(xiàn)挑秉,我將在后面的文章中講解它是如何實(shí)現(xiàn)用戶名+密碼認(rèn)證和手機(jī)號(hào)+短信認(rèn)證的法梯。Spring Social主要用于第三方認(rèn)證,比如QQ犀概,微信的接入立哑。APP和后端服務(wù)器通訊的時(shí)候無法存儲(chǔ)Session的問題,所以我們采用token的方式來存儲(chǔ)登錄用戶的認(rèn)證信息姻灶。使用Spring Security OAuth來創(chuàng)建铛绰、分發(fā)、管理Token信息产喉。


4.開始開發(fā)

4.1代碼架構(gòu)

代碼結(jié)構(gòu)

4.1.1工程圖:

4.1.2imooc-security

??主模塊捂掰,只有pom文件,用于打包和發(fā)布

<dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>io.spring.platform</groupId>
                <artifactId>platform-bom</artifactId>
                <version>Cairo-SR7</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
            <dependency>
                <groupId>org.springframework.cloud</groupId>
                <artifactId>spring-cloud-dependencies</artifactId>
                <version>Finchley.RELEASE</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>2.3.2</version>
                <configuration>
                    <source>1.8</source>
                    <target>1.8</target>
                    <encoding>UTF-8</encoding>
                </configuration>
            </plugin>
        </plugins>
    </build>
    <modules>
        <module>../imooc-security-app</module>
        <module>../imooc-security-browser</module>
        <module>../imooc-security-core</module>
        <module>../imooc-security-demo</module>
    </modules>

??這里引入了spring-cloud以及io.spring.platform的相關(guān)東西曾沈,io.spring.platform的好處是可以幫助我們?cè)谝腩愃苃ibernate和spring的包的時(shí)候可以不用考慮版本不兼容的問題尘颓。最后的modules,引入了圖中的其他4個(gè)模塊晦譬。

4.1.3imooc-security-core

??存放核心登錄邏輯,在本篇文章中互广,我們主要是先讓我們的工程跑起來敛腌,還不會(huì)把具體的代碼放進(jìn)去卧土,我會(huì)在后續(xù)的文章中漸進(jìn)式的將相關(guān)代碼邏輯放進(jìn)去。

4.1.3.1pom.xml

    <dependencies>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-oauth2</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-redis</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-jdbc</artifactId>
        </dependency>
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.social</groupId>
            <artifactId>spring-social-config</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.social</groupId>
            <artifactId>spring-social-core</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.social</groupId>
            <artifactId>spring-social-security</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.social</groupId>
            <artifactId>spring-social-web</artifactId>
        </dependency>
        <dependency>
            <groupId>commons-lang</groupId>
            <artifactId>commons-lang</artifactId>
        </dependency>
        <dependency>
            <groupId>commons-collections</groupId>
            <artifactId>commons-collections</artifactId>
        </dependency>
        <dependency>
            <groupId>commons-beanutils</groupId>
            <artifactId>commons-beanutils</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-configuration-processor</artifactId>
        </dependency>
    </dependencies>
    <parent>
        <groupId>com.imooc.security</groupId>
        <artifactId>imooc-security</artifactId>
        <version>0.0.1-SNAPSHOT</version>
        <relativePath>../imooc-security</relativePath>
    </parent>

這里面我們放入了對(duì)redis操作的相關(guān)包像樊,更重要的是放入了spring-social尤莺,spring-security的相關(guān)依賴。

4.1.4imooc-security-app

依賴了imooc-security-core生棍,所以它的pom.xml很簡(jiǎn)單

    <parent>
        <groupId>com.imooc.security</groupId>
        <artifactId>imooc-security</artifactId>
        <version>0.0.1-SNAPSHOT</version>
        <relativePath>../imooc-security</relativePath>
    </parent>
    <dependencies>
        <dependency>
            <groupId>com.imooc.security</groupId>
            <artifactId>imooc-security-core</artifactId>
            <version>${imooc.security.version}</version>
        </dependency>
    </dependencies>

4.1.4imooc-security-browser

<parent>
        <groupId>com.imooc.security</groupId>
        <artifactId>imooc-security</artifactId>
        <version>0.0.1-SNAPSHOT</version>
        <relativePath>../imooc-security</relativePath>
    </parent>
    <dependencies>
        <dependency>
            <groupId>com.imooc.security</groupId>
            <artifactId>imooc-security-core</artifactId>
            <version>${imooc.security.version}</version>
        </dependency>
        <dependency>
            <groupId>org.springframework.session</groupId>
            <artifactId>spring-session-data-redis</artifactId>
        </dependency>
        
    </dependencies>

??browser除了依賴core還依賴了spring-session-data-redis颤霎,這樣我們就可以把session存放到redis中,并在redis中對(duì)session里面的內(nèi)容作操作涂滴。為什么app不放這個(gè)引用呢友酱。前面我們說了,app和后臺(tái)交互的時(shí)候柔纵,是沒有session的缔杉,是通過token來管理的。

4.1.5imooc-security-demo

4.1.5.1pom.xml

    <parent>
        <groupId>com.imooc.security</groupId>
        <artifactId>imooc-security</artifactId>
        <version>0.0.1-SNAPSHOT</version>
        <relativePath>../imooc-security</relativePath>
    </parent>
    <dependencies>
        <dependency>
            <groupId>com.imooc.security</groupId>
            <artifactId>imooc-security-browser</artifactId>
            <version>${imooc.security.version}</version>
        </dependency>
    </dependencies>
    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <version>1.3.3.RELEASE</version>
                <executions>
                    <execution>
                        <goals>
                            <goal>repackage</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
        <finalName>demo</finalName>
    </build>

這里我們暫時(shí)先引入browser搁料,后期在講token方面的東西的時(shí)候會(huì)引入app或详,另外我們這里還加入了spring-boot-maven-plugin,讓我們打包成可運(yùn)行的jar包郭计,如果說大家不加后面的build霸琴,可以看到你打出來的jar包是沒有把相關(guān)的依賴放進(jìn)去的,是沒法直接執(zhí)行的昭伸。

4.1.5.2DemoApplication

@SpringBootApplication
@RestController
@EnableAutoConfiguration(exclude = {
        org.springframework.boot.autoconfigure.security.servlet.SecurityAutoConfiguration.class
})
public class DemoApplication {
    public static void main(String[] args) {
        try {
            SpringApplication.run(DemoApplication.class, args);
        } catch (Exception e) {
            e.printStackTrace();
        } catch(Error e) {
            e.printStackTrace();
        }
    }

    @GetMapping("/helloword")
    public String helloword() {
        return "hello spring security";

    }
}

用過SpringBoot的同學(xué)應(yīng)該很熟悉這段配置了梧乘,這里我主要講一下@EnableAutoConfiguration這個(gè)注解為什么要加在頭上,如果不加勋乾,我們直接運(yùn)行我們的工程宋下,然后訪問helloword,我們會(huì)看到下面的示意圖:


默認(rèn)配置

這樣會(huì)讓我們輸入用戶名和密碼辑莫,加上了這段注解后学歧,就會(huì)看到瀏覽器上現(xiàn)實(shí)hello spring security,如圖所示:


不驗(yàn)證

現(xiàn)在我們使用的是spring-boot2.0之后的版本各吨,以前的版本中枝笨,我們可以在application.properties中寫上security.basic.enable=false來達(dá)到同樣的效果。

4.1.5.3application.properties

spring.datasource.driver-class-name = com.mysql.jdbc.Driver
spring.datasource.url= jdbc:mysql://127.0.0.1:3306/test?useUnicode=yes&characterEncoding=UTF-8&useSSL=false
spring.datasource.username = 
spring.datasource.password = 
spring.session.store-type=none
#security.basic.enabled=false

在這里我們加入了對(duì)數(shù)據(jù)庫的配置揭蜒,如果不加横浑,我們的springBoot會(huì)因?yàn)橐肓藄pring-boot-starter-jdbc報(bào)錯(cuò),為什么引入spring.session.store-type=none屉更,這是因?yàn)槲覀円肓藄pring-boot-starter-data-redis徙融,spring-session-data-redis,我們要把session放入redis中瑰谜,但是現(xiàn)在我們還沒有搭建redis欺冀,為了讓我們的工程跑起來树绩,所以我們這里設(shè)置為none。
??本篇文章隐轩,我們主要是使用spring-boot2.0先把基本框架搭建好饺饭,后面的文章中,我們將深入講解其他內(nèi)容职车。

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末瘫俊,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子悴灵,更是在濱河造成了極大的恐慌扛芽,老刑警劉巖,帶你破解...
    沈念sama閱讀 211,123評(píng)論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件称勋,死亡現(xiàn)場(chǎng)離奇詭異胸哥,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)赡鲜,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,031評(píng)論 2 384
  • 文/潘曉璐 我一進(jìn)店門空厌,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人银酬,你說我怎么就攤上這事嘲更。” “怎么了揩瞪?”我有些...
    開封第一講書人閱讀 156,723評(píng)論 0 345
  • 文/不壞的土叔 我叫張陵赋朦,是天一觀的道長(zhǎng)。 經(jīng)常有香客問我李破,道長(zhǎng)宠哄,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,357評(píng)論 1 283
  • 正文 為了忘掉前任嗤攻,我火速辦了婚禮毛嫉,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘妇菱。我一直安慰自己承粤,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,412評(píng)論 5 384
  • 文/花漫 我一把揭開白布闯团。 她就那樣靜靜地躺著辛臊,像睡著了一般。 火紅的嫁衣襯著肌膚如雪房交。 梳的紋絲不亂的頭發(fā)上彻舰,一...
    開封第一講書人閱讀 49,760評(píng)論 1 289
  • 那天,我揣著相機(jī)與錄音候味,去河邊找鬼刃唤。 笑死口猜,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的透揣。 我是一名探鬼主播,決...
    沈念sama閱讀 38,904評(píng)論 3 405
  • 文/蒼蘭香墨 我猛地睜開眼川抡,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼辐真!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起崖堤,我...
    開封第一講書人閱讀 37,672評(píng)論 0 266
  • 序言:老撾萬榮一對(duì)情侶失蹤侍咱,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后密幔,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體楔脯,經(jīng)...
    沈念sama閱讀 44,118評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,456評(píng)論 2 325
  • 正文 我和宋清朗相戀三年胯甩,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了昧廷。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,599評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡偎箫,死狀恐怖木柬,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情淹办,我是刑警寧澤眉枕,帶...
    沈念sama閱讀 34,264評(píng)論 4 328
  • 正文 年R本政府宣布,位于F島的核電站怜森,受9級(jí)特大地震影響速挑,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜副硅,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,857評(píng)論 3 312
  • 文/蒙蒙 一姥宝、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧想许,春花似錦伶授、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,731評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至漱凝,卻和暖如春疮蹦,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背茸炒。 一陣腳步聲響...
    開封第一講書人閱讀 31,956評(píng)論 1 264
  • 我被黑心中介騙來泰國(guó)打工愕乎, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留阵苇,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 46,286評(píng)論 2 360
  • 正文 我出身青樓感论,卻偏偏與公主長(zhǎng)得像绅项,于是被迫代替她去往敵國(guó)和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子比肄,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,465評(píng)論 2 348

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