一区二区三区在线-一区二区三区亚洲视频-一区二区三区亚洲-一区二区三区午夜-一区二区三区四区在线视频-一区二区三区四区在线免费观看

服務器之家:專注于服務器技術及軟件下載分享
分類導航

PHP教程|ASP.NET教程|Java教程|ASP教程|編程技術|正則表達式|C/C++|IOS|C#|Swift|Android|VB|R語言|JavaScript|易語言|vb.net|

服務器之家 - 編程語言 - Java教程 - 手把手帶你入門 Spring Security的具體流程

手把手帶你入門 Spring Security的具體流程

2020-08-04 23:53江南一點雨 Java教程

這篇文章主要介紹了手把手帶你入門 Spring Security,本文給大家介紹的非常詳細,對大家的學習或工作具有一定的參考借鑒價值,需要的朋友可以參考下

Spring Security 是 Spring 家族中的一個安全管理框架,實際上,在 Spring Boot 出現之前,Spring Security 就已經發展了多年了,但是使用的并不多,安全管理這個領域,一直是 Shiro 的天下。

相對于 Shiro,在 SSM/SSH 中整合 Spring Security 都是比較麻煩的操作,所以,Spring Security 雖然功能比 Shiro 強大,但是使用反而沒有 Shiro 多(Shiro 雖然功能沒有 Spring Security 多,但是對于大部分項目而言,Shiro 也夠用了)。

自從有了 Spring Boot 之后,Spring Boot 對于 Spring Security 提供了 自動化配置方案,可以零配置使用 Spring Security。

因此,一般來說,常見的安全管理技術棧的組合是這樣的:

  • SSM + Shiro
  • Spring Boot/Spring Cloud + Spring Security

注意,這只是一個推薦的組合而已,如果單純從技術上來說,無論怎么組合,都是可以運行的。

我們來看下具體使用。

1.項目創建

在 Spring Boot 中使用 Spring Security 非常容易,引入依賴即可:

手把手帶你入門 Spring Security的具體流程

pom.xml 中的 Spring Security 依賴:

?
1
2
3
4
<dependency>
 <groupId>org.springframework.boot</groupId>
 <artifactId>spring-boot-starter-security</artifactId>
</dependency>

只要加入依賴,項目的所有接口都會被自動保護起來。

2.初次體驗

我們創建一個 HelloController:

?
1
2
3
4
5
6
7
@RestController
public class HelloController {
 @GetMapping("/hello")
 public String hello() {
  return "hello";
 }
}

訪問 /hello ,需要登錄之后才能訪問。

手把手帶你入門 Spring Security的具體流程

當用戶從瀏覽器發送請求訪問 /hello 接口時,服務端會返回 302 響應碼,讓客戶端重定向到 /login 頁面,用戶在 /login 頁面登錄,登陸成功之后,就會自動跳轉到 /hello 接口。

另外,也可以使用 POSTMAN 來發送請求,使用 POSTMAN 發送請求時,可以將用戶信息放在請求頭中(這樣可以避免重定向到登錄頁面):

手把手帶你入門 Spring Security的具體流程

通過以上兩種不同的登錄方式,可以看出,Spring Security 支持兩種不同的認證方式:

  • 可以通過 form 表單來認證
  • 可以通過 HttpBasic 來認證

3.用戶名配置

默認情況下,登錄的用戶名是 user ,密碼則是項目啟動時隨機生成的字符串,可以從啟動的控制臺日志中看到默認密碼:

手把手帶你入門 Spring Security的具體流程

這個隨機生成的密碼,每次啟動時都會變。對登錄的用戶名/密碼進行配置,有三種不同的方式:

  • 在 application.properties 中進行配置
  • 通過 Java 代碼配置在內存中
  • 通過 Java 從數據庫中加載

前兩種比較簡單,第三種代碼量略大,本文就先來看看前兩種,第三種后面再單獨寫文章介紹,也可以參考我的微人事項目。

3.1 配置文件配置用戶名/密碼

可以直接在 application.properties 文件中配置用戶的基本信息:

?
1
2
spring.security.user.name=javaboy
spring.security.user.password=123

配置完成后,重啟項目,就可以使用這里配置的用戶名/密碼登錄了。

3.2 Java 配置用戶名/密碼

也可以在 Java 代碼中配置用戶名密碼,首先需要我們創建一個 Spring Security 的配置類,集成自 WebSecurityConfigurerAdapter 類,如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
@Configuration
public class SecurityConfig extends WebSecurityConfigurerAdapter {
 @Override
 protected void configure(AuthenticationManagerBuilder auth) throws Exception {
  //下面這兩行配置表示在內存中配置了兩個用戶
  auth.inMemoryAuthentication()
    .withUser("javaboy").roles("admin").password("$2a$10$OR3VSksVAmCzc.7WeaRPR.t0wyCsIj24k0Bne8iKWV1o.V9wsP8Xe")
    .and()
    .withUser("lisi").roles("user").password("$2a$10$p1H8iWa8I4.CA.7Z8bwLjes91ZpY.rYREGHQEInNtAp4NzL6PLKxi");
 }
 @Bean
 PasswordEncoder passwordEncoder() {
  return new BCryptPasswordEncoder();
 }
}

這里我們在 configure 方法中配置了兩個用戶,用戶的密碼都是加密之后的字符串(明文是 123),從 Spring5 開始,強制要求密碼要加密,如果非不想加密,可以使用一個過期的 PasswordEncoder 的實例 NoOpPasswordEncoder,但是不建議這么做,畢竟不安全。

Spring Security 中提供了 BCryptPasswordEncoder 密碼編碼工具,可以非常方便的實現密碼的加密加鹽,相同明文加密出來的結果總是不同,這樣就不需要用戶去額外保存的字段了,這一點比 Shiro 要方便很多。

4.登錄配置

對于登錄接口,登錄成功后的響應,登錄失敗后的響應,我們都可以在 WebSecurityConfigurerAdapter 的實現類中進行配置。例如下面這樣:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
@Configuration
public class SecurityConfig extends WebSecurityConfigurerAdapter {
 @Autowired
 VerifyCodeFilter verifyCodeFilter;
 @Override
 protected void configure(HttpSecurity http) throws Exception {
  http.addFilterBefore(verifyCodeFilter, UsernamePasswordAuthenticationFilter.class);
  http
  .authorizeRequests()//開啟登錄配置
  .antMatchers("/hello").hasRole("admin")//表示訪問 /hello 這個接口,需要具備 admin 這個角色
  .anyRequest().authenticated()//表示剩余的其他接口,登錄之后就能訪問
  .and()
  .formLogin()
  //定義登錄頁面,未登錄時,訪問一個需要登錄之后才能訪問的接口,會自動跳轉到該頁面
  .loginPage("/login_p")
  //登錄處理接口
  .loginProcessingUrl("/doLogin")
  //定義登錄時,用戶名的 key,默認為 username
  .usernameParameter("uname")
  //定義登錄時,用戶密碼的 key,默認為 password
  .passwordParameter("passwd")
  //登錄成功的處理器
  .successHandler(new AuthenticationSuccessHandler() {
   @Override
   public void onAuthenticationSuccess(HttpServletRequest req, HttpServletResponse resp, Authentication authentication) throws IOException, ServletException {
     resp.setContentType("application/json;charset=utf-8");
     PrintWriter out = resp.getWriter();
     out.write("success");
     out.flush();
    }
   })
   .failureHandler(new AuthenticationFailureHandler() {
    @Override
    public void onAuthenticationFailure(HttpServletRequest req, HttpServletResponse resp, AuthenticationException exception) throws IOException, ServletException {
     resp.setContentType("application/json;charset=utf-8");
     PrintWriter out = resp.getWriter();
     out.write("fail");
     out.flush();
    }
   })
   .permitAll()//和表單登錄相關的接口統統都直接通過
   .and()
   .logout()
   .logoutUrl("/logout")
   .logoutSuccessHandler(new LogoutSuccessHandler() {
    @Override
    public void onLogoutSuccess(HttpServletRequest req, HttpServletResponse resp, Authentication authentication) throws IOException, ServletException {
     resp.setContentType("application/json;charset=utf-8");
     PrintWriter out = resp.getWriter();
     out.write("logout success");
     out.flush();
    }
   })
   .permitAll()
   .and()
   .httpBasic()
   .and()
   .csrf().disable();
 }
}

我們可以在 successHandler 方法中,配置登錄成功的回調,如果是前后端分離開發的話,登錄成功后返回 JSON 即可,同理,failureHandler 方法中配置登錄失敗的回調,logoutSuccessHandler 中則配置注銷成功的回調。

5.忽略攔截

如果某一個請求地址不需要攔截的話,有兩種方式實現:

  • 設置該地址匿名訪問
  • 直接過濾掉該地址,即該地址不走 Spring Security 過濾器鏈

推薦使用第二種方案,配置如下:

?
1
2
3
4
5
6
7
@Configuration
public class SecurityConfig extends WebSecurityConfigurerAdapter {
 @Override
 public void configure(WebSecurity web) throws Exception {
  web.ignoring().antMatchers("/vercode");
 }
}

Spring Security 另外一個強大之處就是它可以結合 OAuth2 ,玩出更多的花樣出來,這些我們在后面的文章中再和大家細細介紹。

到此這篇關于手把手帶你入門 Spring Security的文章就介紹到這了,更多相關入門 Spring Security內容請搜索服務器之家以前的文章或繼續瀏覽下面的相關文章希望大家以后多多支持服務器之家!

原文鏈接:https://www.cnblogs.com/lenve/p/11242055.html

延伸 · 閱讀

精彩推薦
主站蜘蛛池模板: 国产成人精品一区二区仙踪林 | 1024国产高清精品推荐 | 国产免费一区二区 | 波多野结衣在线观看视频 | tobu8中国在线观看免费视频 | 精品国产国产综合精品 | 国产精品九九久久一区hh | 国产精品久久久久久久久免费 | 美女秘密网站 | 色播艾小青国产专区在线播放 | 疯狂激吻添下边小说 | 无人影院在线播放 | 亚洲国产欧美另类 | 蜜月aⅴ免费一区二区三区 蜜桃影像传媒推广 | 亚洲乱码一区二区三区国产精品 | 亚洲高清免费在线观看 | 91制片厂(果冻传媒)原档破解 | 国产思妍小仙女一二区 | 美女扒开胸罩露出奶了无遮挡免费 | xnxx动漫 | 免费大秀视频在线播放 | kkkk4444在线看片 | b片在线观看 | 青青草综合网 | 九九九九在线精品免费视频 | 日韩欧美国产一区二区三区 | 欧美一区二区三区不卡视频 | 19+韩国女主播激情vip视频在线 | 男女天堂 | 日本人交换乱理伦片 | 天天色国产 | 红楼影视h38bar在线线播放 | 强波多野结衣女教师 | 亚洲网站在线观看 | 亚洲国产在线午夜视频无 | 欧美yyy| 9色视频在线观看 | 91天堂影院| 男同互操| 欧美日韩精品一区二区三区视频在线 | 国产网站免费看 |