Java を使用して Spring Security SAML に基づくシングル サインオン システムを開発する方法
はじめに:
インターネットの急速な発展に伴い、さらに多くのアプリケーションプログラムが開発されています。これらのアプリケーションでは、ユーザー ログインは最も一般的な機能の 1 つです。ただし、エンタープライズ レベルのアプリケーションの場合、ユーザーは複数のシステムにログインする必要があるため、ユーザーのログイン エクスペリエンスが非常に低下します。この問題を解決するために登場したのがシングルサインオンシステム(Single Sign-On、以下SSO)です。
はじめに:
シングル サインオン システムを使用すると、ユーザーは一度ログインすると、ログイン資格情報を繰り返し入力することなく、企業内のさまざまなシステムにあるアプリケーションにアクセスできます。 Spring Security は強力なセキュリティ フレームワークであり、SAML (Security Assertion Markup Language) はクロスドメイン認証および認可のオープン標準です。
この記事では、Java を使用して Spring Security SAML に基づくシングル サインオン システムを開発する方法を紹介し、具体的なコード例を示します。
ステップ 1: 準備
ステップ 2: SAML の構成
# SP元数据 security.saml2.metadata.sp.entity-id= security.saml2.metadata.sp.private-key-location= security.saml2.metadata.sp.public-key-location= # IDP元数据 security.saml2.metadata.idp.entity-id= security.saml2.metadata.idp.single-sign-on-service.location= security.saml2.metadata.idp.single-logout-service.location= # 密钥信息 security.saml2.keystore.location= security.saml2.keystore.password= security.saml2.private-key.password=
@Configuration @EnableWebSecurity public class SAMLWebSecurityConfig extends SAMLConfigurerAdapter { @Autowired private SAMLUserDetailsService samlUserDetailsService; @Override protected void configure(HttpSecurity http) throws Exception { http.authorizeRequests() .antMatchers("/saml/**").permitAll() .anyRequest().authenticated() .and() .apply(saml()) .userDetailsService(samlUserDetailsService); } @Override protected void configure(AuthenticationManagerBuilder auth) throws Exception { auth.authenticationProvider(samlAuthenticationProvider()); } @Bean public SAMLConfigurer saml() { return new SAMLConfigurer(); } @Bean public SAMLAuthenticationProvider samlAuthenticationProvider() { return new SAMLAuthenticationProvider(); } }
public class SAMLConfigurer extends SAMLConfigurerAdapter { @Override public void configure(SAMLServiceProviderConfigurer saml) throws Exception { saml.keyStore() .storeFilePath(keystoreLocation) .password(keystorePassword) .keyname(keyAlias) .keyPassword(keyPassword) .and() .protocol(PROTOCOL) .hostname(HOSTNAME) .basePath(BASE_PATH) .entityId(SP_ENTITY_ID) .metadataFilePath(SP_METADATA_LOCATION); } }
ステップ 3: ユーザー サービスの作成
@Service public class SAMLUser implements SAMLUserDetailsService { @Override public Object loadUserBySAML(SAMLCredential credential) throws UsernameNotFoundException { String username = credential.getNameID().getValue(); // 根据用户名查询用户信息 // ... // 返回用户详细信息 return new User(username, "", new ArrayList<>()); } }
ステップ 4: コントローラーの作成
@Controller public class HomeController { @RequestMapping("/") public String home() { return "home"; } }
@Controller public class LogoutController { @RequestMapping("/logout") public String logout() { return "logout"; } }
ステップ 5: ビューの作成
home.html:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Home</title> </head> <body> <h1>Welcome to Home Page</h1> </body> </html>
logout.html:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Logout</title> </head> <body> <h1>You have been logged out</h1> </body> </html>
概要:
これまでのところ、Java を使用した Spring Security SAML の開発は完了しました。シングルサインオンシステムの手順。 SAML を構成し、ユーザー サービスを作成することで、優れたユーザー エクスペリエンスを提供する安定した安全なログイン システムを実装できます。
参考:
以上がJava を使用して Spring Security SAML ベースのシングル サインオン システムを開発する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。