成人午夜视频全免费观看高清-秋霞福利视频一区二区三区-国产精品久久久久电影小说-亚洲不卡区三一区三区一区

基于springsecurity實(shí)現(xiàn)登錄注銷(xiāo)功能過(guò)程解析

這篇文章主要介紹了基于spring security實(shí)現(xiàn)登錄注銷(xiāo)功能過(guò)程解析,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下

我們提供的服務(wù)有:做網(wǎng)站、網(wǎng)站制作、微信公眾號(hào)開(kāi)發(fā)、網(wǎng)站優(yōu)化、網(wǎng)站認(rèn)證、常德ssl等。為上千多家企事業(yè)單位解決了網(wǎng)站和推廣的問(wèn)題。提供周到的售前咨詢(xún)和貼心的售后服務(wù),是有科學(xué)管理、有技術(shù)的常德網(wǎng)站制作公司

1、引入maven依賴(lài)

<dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-security</artifactId>
    </dependency>

2、Security 配置類(lèi) 說(shuō)明登錄方式、登錄頁(yè)面、哪個(gè)url需要認(rèn)證、注入登錄失敗/成功過(guò)濾器

@Configuration
public class BrowserSecurityConfig extends WebSecurityConfigurerAdapter {

  /**
   * 注入 Security 屬性類(lèi)配置
   */
  @Autowired
  private SecurityProperties securityProperties;

  /**
   * 注入 自定義的 登錄成功處理類(lèi)
   */
  @Autowired
  private MyAuthenticationSuccessHandler mySuccessHandler;
  /**
   * 注入 自定義的 登錄失敗處理類(lèi)
   */
  @Autowired
  private MyAuthenticationFailHandler myFailHandler;

  /**
   * 重寫(xiě)PasswordEncoder 接口中的方法,實(shí)例化加密策略
   * @return 返回 BCrypt 加密策略
   */
  @Bean
  public PasswordEncoder passwordEncoder(){
    return new BCryptPasswordEncoder();
  }

  @Override
  protected void configure(HttpSecurity http) throws Exception {

    //登錄成功的頁(yè)面地址
    String redirectUrl = securityProperties.getLoginPage();
    //basic 登錄方式
//   http.httpBasic()

    //表單登錄 方式
    http.formLogin()
        .loginPage("/authentication/require")
        //登錄需要經(jīng)過(guò)的url請(qǐng)求
        .loginProcessingUrl("/authentication/form")
        .successHandler(mySuccessHandler)
        .failureHandler(myFailHandler)
        .and()
        //請(qǐng)求授權(quán)
        .authorizeRequests()
        //不需要權(quán)限認(rèn)證的url
        .antMatchers("/authentication/*",redirectUrl).permitAll()
        //任何請(qǐng)求
        .anyRequest()
        //需要身份認(rèn)證
        .authenticated()
        .and()
        //關(guān)閉跨站請(qǐng)求防護(hù)
        .csrf().disable();
    //默認(rèn)注銷(xiāo)地址:/logout
    http.logout().
        //注銷(xiāo)之后 跳轉(zhuǎn)的頁(yè)面
        logoutSuccessUrl("/authentication/require");
  }

3、自定義登錄成功和失敗的處理器

(1)、登錄成功

@Component
@Slf4j
public class MyAuthenticationSuccessHandler extends SavedRequestAwareAuthenticationSuccessHandler {
  @Override
  public void onAuthenticationSuccess(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse, Authentication authentication) throws IOException, ServletException {

     logger.info("登錄成功");
     //將 authention 信息打包成json格式返回
      httpServletResponse.setContentType("application/json;charset=UTF-8");
      httpServletResponse.getWriter().write("登錄成功");
 } }

(2)、登錄失敗

@Component
@Slf4j
public class MyAuthenticationFailHandler extends SimpleUrlAuthenticationFailureHandler {
  @Override
  public void onAuthenticationFailure(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse, AuthenticationException e) throws IOException, ServletException {
    logger.info("登錄失敗");

      //設(shè)置狀態(tài)碼
      httpServletResponse.setStatus(500);
      //將 登錄失敗 信息打包成json格式返回
      httpServletResponse.setContentType("application/json;charset=UTF-8");
      httpServletResponse.getWriter().write("登錄失?。?+e.getMessage());
 } }

4、UserDetail 類(lèi) 加載用戶(hù)數(shù)據(jù) , 返回UserDetail 實(shí)例 (里面包含用戶(hù)信息)

@Component
@Slf4j
public class MyUserDetailsService implements UserDetailsService {

  @Autowired
  private PasswordEncoder passwordEncoder;

  /**
   * 根據(jù)進(jìn)行登錄
   * @param username
   * @return
   * @throws UsernameNotFoundException
   */
  @Override
  public UserDetails loadUserByUsername(String username) throws UsernameNotFoundException {
    log.info("登錄用戶(hù)名:"+username);
    String password = passwordEncoder.encode("123456");
    //User三個(gè)參數(shù)  (用戶(hù)名+密碼+權(quán)限)
    //根據(jù)查找到的用戶(hù)信息判斷用戶(hù)是否被凍結(jié)
    log.info("數(shù)據(jù)庫(kù)密碼:"+password);
    return new User(username,password, AuthorityUtils.commaSeparatedStringToAuthorityList("admin"));
  }
}

5、登錄路徑請(qǐng)求類(lèi),.loginPage("/authentication/require")

@RestController
@Slf4j
@ResponseStatus(code = HttpStatus.UNAUTHORIZED)
public class BrowerSecurityController {

  /**
   * 把當(dāng)前的請(qǐng)求緩存到 session 里去
   */
  private RequestCache requestCache = new HttpSessionRequestCache();

  /**
   * 重定向 策略
   */
  private RedirectStrategy redirectStrategy = new DefaultRedirectStrategy();

  /**
   * 注入 Security 屬性類(lèi)配置
   */
  @Autowired
  private SecurityProperties securityProperties;

  /**
   * 當(dāng)需要身份認(rèn)證時(shí) 跳轉(zhuǎn)到這里
   */
  @RequestMapping("/authentication/require")
  public SimpleResponse requireAuthentication(HttpServletRequest request, HttpServletResponse response) throws IOException {
    //拿到請(qǐng)求對(duì)象
    SavedRequest savedRequest = requestCache.getRequest(request, response);
    if (savedRequest != null){
      //獲取 跳轉(zhuǎn)url
      String targetUrl = savedRequest.getRedirectUrl();
      log.info("引發(fā)跳轉(zhuǎn)的請(qǐng)求是:"+targetUrl);

      //判斷 targetUrl 是不是 .html 結(jié)尾, 如果是:跳轉(zhuǎn)到登錄頁(yè)(返回view)
      if (StringUtils.endsWithIgnoreCase(targetUrl,".html")){
        String redirectUrl = securityProperties.getLoginPage();
        redirectStrategy.sendRedirect(request,response,redirectUrl);
      }
    }
    //如果不是,返回一個(gè)json 字符串
    return new SimpleResponse("訪問(wèn)的服務(wù)需要身份認(rèn)證,請(qǐng)引導(dǎo)用戶(hù)到登錄頁(yè)");
  }

6、postman請(qǐng)求測(cè)試

(1)未登錄請(qǐng)求

基于spring security實(shí)現(xiàn)登錄注銷(xiāo)功能過(guò)程解析

(2)、登錄

基于spring security實(shí)現(xiàn)登錄注銷(xiāo)功能過(guò)程解析

(3)、再次訪問(wèn)

基于spring security實(shí)現(xiàn)登錄注銷(xiāo)功能過(guò)程解析

(4)、注銷(xiāo)

基于spring security實(shí)現(xiàn)登錄注銷(xiāo)功能過(guò)程解析

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。

當(dāng)前文章:基于springsecurity實(shí)現(xiàn)登錄注銷(xiāo)功能過(guò)程解析
文章源于:http://jinyejixie.com/article18/gpejdp.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供虛擬主機(jī)、網(wǎng)站維護(hù)、外貿(mào)網(wǎng)站建設(shè)、動(dòng)態(tài)網(wǎng)站、微信公眾號(hào)、企業(yè)建站

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶(hù)投稿、用戶(hù)轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)

小程序開(kāi)發(fā)
巴马| 贡觉县| 武强县| 佛坪县| 松江区| 云霄县| 瑞昌市| 柘城县| 竹溪县| 稻城县| 丰都县| 竹溪县| 永福县| 长宁区| 崇礼县| 同德县| 东至县| 湟源县| 延津县| 商都县| 美姑县| 马公市| 弥渡县| 台州市| 府谷县| 高阳县| 辉县市| 礼泉县| 蓝田县| 文水县| 凌源市| 衡南县| 凤翔县| 三原县| 平山县| 枣强县| 巍山| 东丽区| 徐汇区| 桐城市| 西丰县|