mirror of
https://gitee.com/yudaocode/SpringBoot-Labs.git
synced 2026-09-03 05:53:54 +08:00
增加 OAuth2 客户端模式
This commit is contained in:
55
lab-68/lab-68-demo01-client-credentials-server/pom.xml
Normal file
55
lab-68/lab-68-demo01-client-credentials-server/pom.xml
Normal file
@@ -0,0 +1,55 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<parent>
|
||||
<artifactId>lab-68</artifactId>
|
||||
<groupId>cn.iocoder.springboot.labs</groupId>
|
||||
<version>1.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<artifactId>lab-68-demo01-client-credentials-server</artifactId>
|
||||
|
||||
<properties>
|
||||
<!-- 依赖相关配置 -->
|
||||
<spring.boot.version>2.2.4.RELEASE</spring.boot.version>
|
||||
<!-- 插件相关配置 -->
|
||||
<maven.compiler.target>1.8</maven.compiler.target>
|
||||
<maven.compiler.source>1.8</maven.compiler.source>
|
||||
</properties>
|
||||
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-parent</artifactId>
|
||||
<version>${spring.boot.version}</version>
|
||||
<type>pom</type>
|
||||
<scope>import</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
|
||||
<dependencies>
|
||||
<!-- 实现对 Spring MVC 的自动配置 -->
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-web</artifactId>
|
||||
</dependency>
|
||||
|
||||
<!-- 实现对 Spring Security 的自动配置 -->
|
||||
<!-- <dependency>-->
|
||||
<!-- <groupId>org.springframework.boot</groupId>-->
|
||||
<!-- <artifactId>spring-boot-starter-security</artifactId>-->
|
||||
<!-- </dependency>-->
|
||||
|
||||
<!-- 实现对 Spring Security OAuth2 的自动配置 -->
|
||||
<dependency>
|
||||
<groupId>org.springframework.security.oauth.boot</groupId>
|
||||
<artifactId>spring-security-oauth2-autoconfigure</artifactId>
|
||||
<version>${spring.boot.version}</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
</project>
|
||||
@@ -0,0 +1,32 @@
|
||||
package cn.iocoder.springboot.lab68.resourceserverdemo.config;
|
||||
|
||||
import org.springframework.context.annotation.Bean;
|
||||
import org.springframework.context.annotation.Configuration;
|
||||
import org.springframework.security.crypto.password.NoOpPasswordEncoder;
|
||||
import org.springframework.security.oauth2.config.annotation.configurers.ClientDetailsServiceConfigurer;
|
||||
import org.springframework.security.oauth2.config.annotation.web.configuration.AuthorizationServerConfigurerAdapter;
|
||||
import org.springframework.security.oauth2.config.annotation.web.configuration.EnableAuthorizationServer;
|
||||
|
||||
/**
|
||||
* 授权服务器配置
|
||||
*/
|
||||
@Configuration
|
||||
@EnableAuthorizationServer
|
||||
public class OAuth2AuthorizationServerConfig extends AuthorizationServerConfigurerAdapter {
|
||||
|
||||
@Bean
|
||||
public static NoOpPasswordEncoder passwordEncoder() {
|
||||
return (NoOpPasswordEncoder) NoOpPasswordEncoder.getInstance();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void configure(ClientDetailsServiceConfigurer clients) throws Exception {
|
||||
clients.inMemory()
|
||||
.withClient("clientapp").secret("112233") // Client 账号、密码。
|
||||
.authorizedGrantTypes("client_credentials") // 客户端模式
|
||||
.scopes("read_userinfo", "read_contacts") // 可授权的 Scope
|
||||
// .and().withClient() // 可以继续配置新的 Client
|
||||
;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -9,7 +9,7 @@
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<artifactId>lab-68-demo01-implicit</artifactId>
|
||||
<artifactId>lab-68-demo01-implicit-server</artifactId>
|
||||
|
||||
<properties>
|
||||
<!-- 依赖相关配置 -->
|
||||
@@ -0,0 +1,13 @@
|
||||
package cn.iocoder.springboot.lab68.resourceserverdemo;
|
||||
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
|
||||
@SpringBootApplication
|
||||
public class ResourceServerApplication {
|
||||
|
||||
public static void main(String[] args) {
|
||||
SpringApplication.run(ResourceServerApplication.class, args);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,26 @@
|
||||
package cn.iocoder.springboot.lab68.resourceserverdemo.config;
|
||||
|
||||
import org.springframework.context.annotation.Configuration;
|
||||
import org.springframework.security.config.annotation.web.builders.HttpSecurity;
|
||||
import org.springframework.security.oauth2.config.annotation.web.configuration.EnableResourceServer;
|
||||
import org.springframework.security.oauth2.config.annotation.web.configuration.ResourceServerConfigurerAdapter;
|
||||
|
||||
/**
|
||||
* 资源服务器配置
|
||||
*/
|
||||
@Configuration
|
||||
@EnableResourceServer
|
||||
public class OAuth2ResourceServerConfig extends ResourceServerConfigurerAdapter {
|
||||
|
||||
@Override
|
||||
public void configure(HttpSecurity http) throws Exception {
|
||||
http.authorizeRequests()
|
||||
.anyRequest().authenticated()
|
||||
// 设置 /api/ 开头的 URL 需要保护
|
||||
.and().requestMatchers().antMatchers("/api/**");
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// 实际,OAuth2ResourceServer 不是和 OAuth2AuthorizationServer 一起。
|
||||
// 主要考虑,简化 demo ,所以改成这样。
|
||||
@@ -0,0 +1,18 @@
|
||||
package cn.iocoder.springboot.lab68.resourceserverdemo.controller;
|
||||
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
/**
|
||||
* 示例模块 Controller
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/api/example")
|
||||
public class ExampleController {
|
||||
|
||||
@RequestMapping("/hello")
|
||||
public String hello() {
|
||||
return "world";
|
||||
}
|
||||
|
||||
}
|
||||
@@ -15,17 +15,9 @@ import org.springframework.security.oauth2.config.annotation.web.configurers.Aut
|
||||
@EnableAuthorizationServer
|
||||
public class OAuth2AuthorizationServerConfig extends AuthorizationServerConfigurerAdapter {
|
||||
|
||||
// /**
|
||||
// * 用户认证 Manager
|
||||
// */
|
||||
// @Autowired
|
||||
// private AuthenticationManager authenticationManager;
|
||||
//
|
||||
// @Override
|
||||
// public void configure(AuthorizationServerEndpointsConfigurer endpoints) throws Exception {
|
||||
// endpoints.authenticationManager(authenticationManager);
|
||||
// }
|
||||
|
||||
/**
|
||||
* 创建 PasswordEncoder Bean
|
||||
*/
|
||||
@Bean
|
||||
public static NoOpPasswordEncoder passwordEncoder() {
|
||||
return (NoOpPasswordEncoder) NoOpPasswordEncoder.getInstance();
|
||||
|
||||
@@ -1,36 +0,0 @@
|
||||
package cn.iocoder.springboot.lab68.authorizationserverdemo.config;
|
||||
|
||||
import org.springframework.context.annotation.Bean;
|
||||
import org.springframework.security.authentication.AuthenticationManager;
|
||||
import org.springframework.security.config.BeanIds;
|
||||
import org.springframework.security.config.annotation.authentication.builders.AuthenticationManagerBuilder;
|
||||
import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;
|
||||
import org.springframework.security.crypto.password.NoOpPasswordEncoder;
|
||||
|
||||
//@Configuration
|
||||
//@EnableWebSecurity
|
||||
public class SecurityConfig extends WebSecurityConfigurerAdapter {
|
||||
|
||||
@Override
|
||||
@Bean(name = BeanIds.AUTHENTICATION_MANAGER)
|
||||
public AuthenticationManager authenticationManagerBean() throws Exception {
|
||||
return super.authenticationManagerBean();
|
||||
}
|
||||
|
||||
@Bean
|
||||
public static NoOpPasswordEncoder passwordEncoder() {
|
||||
return (NoOpPasswordEncoder) NoOpPasswordEncoder.getInstance();
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void configure(AuthenticationManagerBuilder auth) throws Exception {
|
||||
auth.
|
||||
// 使用内存中的 InMemoryUserDetailsManager
|
||||
inMemoryAuthentication()
|
||||
// 不使用 PasswordEncoder 密码编码器
|
||||
.passwordEncoder(passwordEncoder())
|
||||
// 配置 yunai 用户
|
||||
.withUser("yunai").password("1024").roles("USER");
|
||||
}
|
||||
|
||||
}
|
||||
@@ -13,8 +13,9 @@
|
||||
<packaging>pom</packaging>
|
||||
<modules>
|
||||
<module>lab-68-demo01-resource-owner-password-credentials-server</module>
|
||||
<module>lab-68-demo01-authorization-code</module>
|
||||
<module>lab-68-demo01-implicit</module>
|
||||
<module>lab-68-demo01-authorization-code-server</module>
|
||||
<module>lab-68-demo01-implicit-server</module>
|
||||
<module>lab-68-demo01-client-credentials-server</module>
|
||||
|
||||
<module>lab-68-demo02-resource-server</module>
|
||||
<module>lab-68-demo02-authorization-server-with-resource-owner-password-credentials</module>
|
||||
|
||||
Reference in New Issue
Block a user