溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Springboot2.X如何解決單點(diǎn)登陸

發(fā)布時(shí)間:2021-09-28 09:13:07 來源:億速云 閱讀:147 作者:柒染 欄目:大數(shù)據(jù)

這期內(nèi)容當(dāng)中小編將會(huì)給大家?guī)碛嘘P(guān)Springboot2.X如何解決單點(diǎn)登陸,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

1、pom文件依賴
<dependency>
    <groupId>com.majiaxueyuan</groupId>
    <artifactId>sso-core</artifactId>
    <version>1.2.2</version>
</dependency>
2、sso配置文件

    由于使用的是springboot2.2.0版本,所以配置需要實(shí)現(xiàn)WebMvcConfigurer

import com.majiaxueyuan.sso.core.filter.MaJiaSSOIntercepter;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.InterceptorRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;

/**
 * @Author:MuJiuTian
 * @Description: 單點(diǎn)登陸配置WebMvcConfigurer
 * @Date: Created in 下午5:34 2019/10/21
 */
@Configuration
public class SsoConfig implements WebMvcConfigurer {

    @Override
    public void addInterceptors(InterceptorRegistry registry) {
        registry.addInterceptor(ssoIntercepter()).addPathPatterns("/**");
    }

    @Bean
    public MaJiaSSOIntercepter ssoIntercepter() {
        return new MaJiaSSOIntercepter().setTokenSalt("pwd_salt");
    }
}

    如果是其他版本可以使用集成WebMvcConfigurerAdapter

import com.majiaxueyuan.sso.core.filter.MaJiaSSOIntercepter;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.InterceptorRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter;

/**
 * @Author:MuJiuTian
 * @Description: 單點(diǎn)登陸配置WebMvcConfigurerAdapter
 * @Date: Created in 下午5:34 2019/10/21
 */
@Configuration
public class SsoConfig extends WebMvcConfigurerAdapter {

    @Override
    public void addInterceptors(InterceptorRegistry registry) {
        registry.addInterceptor(ssoIntercepter()).addPathPatterns("/**");
    }

    @Bean
    public MaJiaSSOIntercepter ssoIntercepter() {
        return new MaJiaSSOIntercepter().setTokenSalt("pwd_salt");
    }
}

3、實(shí)體類

@Data
@AllArgsConstructor
@NoArgsConstructor
public class User {
    private int userId;
    private String slat;
    private String account;
    // ....其他的字段就不寫了
}
4、service邏輯層
/**
 * @Author:MuJiuTian
 * @Description: 簡單測試,我就不寫接口了,直接以class的形式
 * @Date: Created in 下午5:47 2019/10/21
 */
@Service
public class LoginService {

    public User checkUser(String account, String pwd){
        // 做假數(shù)據(jù),加入密碼登陸成功,返回user實(shí)體類
        return new User(1,account,"ewdsbj");
    }
}
5、controller層
import com.majiaxueyuan.sso.core.annotation.NoToken;
import com.majiaxueyuan.sso.core.constans.Result;
import com.majiaxueyuan.sso.core.helper.TokenLoginHelper;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;

/**
 * @Author:MuJiuTian
 * @Description: 測試單點(diǎn)登錄框架
 * @Date: Created in 下午5:25 2019/10/21
 */
@RestController
public class LoginController {

    @Autowired
    LoginService loginService;

    @GetMapping(value = "/testToken")
    public String testToken() {
        return "需要token";
    }

    @GetMapping(value = "/login")
    @NoToken(notNeedToken = true)
    public String login(String account, String password) {

        // 測試用戶輸入的用戶名、密碼是否正確
        User user = loginService.checkUser(account, password);
        if (user == null){
            return "密碼錯(cuò)誤";
        }

        // 如果密碼成功后,獲取用戶主鍵id、以及注冊(cè)時(shí)的salt
        Long user_id = Long.valueOf(user.getUserId());
        String salt  = user.getSlat();

        // 然后通過sso-core框架獲取token
        Result loginSuccess = TokenLoginHelper.loginSuccess(user_id,account,"",salt);

        // 獲取token
        String token = "";
        if (loginSuccess.getCode() == 200){
            token = loginSuccess.getData().toString();
        }
        return token;
    }
}
6、測試

測試接口1:

Springboot2.X如何解決單點(diǎn)登陸

測試接口2:

Springboot2.X如何解決單點(diǎn)登陸

7、獲取request用戶對(duì)象

      用戶獲取到Token之后,返回給前端,前端攜帶時(shí)需要將Token添加到Header中的Authorization字段。當(dāng)前強(qiáng)制使用此請(qǐng)求頭字段,這些數(shù)據(jù)存儲(chǔ)headers中帶過來檢測token是否過期或者登陸...情況。

SSOUser user = (SSOUser) request.getAttribute("ssoUser");
8、@NoToken

      當(dāng)有某個(gè)請(qǐng)求不需要認(rèn)證即可訪問時(shí),在此請(qǐng)求方法上添加注解@NoToken,不加注解需要驗(yàn)證,只要加上注解就表示不需要認(rèn)證,不管@NoToken(notNeedToken = true)還是@NoToken(notNeedToken = false),都不需要驗(yàn)證,至少在目前最新1.2.2版本是這樣。

上述就是小編為大家分享的Springboot2.X如何解決單點(diǎn)登陸了,如果剛好有類似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI