您好,登录后才能下订单哦!
如何正确的使用Spring WebFlux?相信很多没有经验的人对此束手无策,为此本文总结了问题出现的原因和解决方法,通过这篇文章希望你能解决这个问题。
Spring WebFlux在内部使用Project Reactor及其发布者实现Flux和Mono。
新框架支持两种编程模型:
基于注释的反应元件
功能路由和处理
让我们从spring boot starter webflux依赖项开始,它包含所有其他必需的依赖项:
spring boot和spring boot starter,用于基本的spring boot应用程序设置
spring-webflux框架
reactor-core我们需要的反应流,也需要reactor-netty
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-webflux</artifactId> <version>2.2.6.RELEASE</version> </dependency>
我们现在将使用Spring WebFlux构建一个非常简单的REST EmployeeManagement应用程序:
我们将使用一个简单的域模型-带有id和name字段的Employee
我们将使用RestController构建restapi,以将员工资源作为单个资源和集合发布
我们将使用WebClient构建一个客户端来检索相同的资源
我们将使用WebFlux和Spring Security创建一个安全的被动端点
springwebflux支持基于注释的配置,方式与springwebmvc框架相同。
首先,在服务器上,我们创建一个带注释的控制器,它发布员工资源的反应流。
让我们创建带注释的EmployeeController
:
@RestController @RequestMapping("/employees") public class EmployeeController { private final EmployeeRepository employeeRepository; // constructor... }
EmployeeRepository可以是任何支持非阻塞反应流的数据存储库。
让我们在控制器中创建一个端点,用于发布单个员工资源:
@GetMapping("/{id}") private Mono<Employee> getEmployeeById(@PathVariable String id) { return employeeRepository.findEmployeeById(id); }
我们在Mono中包装一个Employee资源,因为我们最多返回一个Employee。
我们还要添加一个端点来发布所有雇员的集合资源:
@GetMapping private Flux<Employee> getAllEmployees() { return employeeRepository.findAllEmployees(); }
对于集合资源,我们使用类型为Employee的流量,因为它是0..n元素的发布者。
Spring5中引入的WebClient是一个支持反应流的非阻塞客户端。
我们可以使用WebClient创建一个客户端,从EmployeeController提供的端点检索数据。
让我们创建一个简单的EmployeeWebClient:
public class EmployeeWebClient { WebClient client = WebClient.create("http://localhost:8080"); // ... }
在这里,我们使用工厂方法create创建了一个WebClient。它会指向localhost:8080,所以我们可以使用或相对的URL来调用这个客户端实例。
要从endpoint/employee/{id}检索Mono类型的单个资源,请执行以下操作:
Mono<Employee> employeeMono = client.get() .uri("/employees/{id}", "1") .retrieve() .bodyToMono(Employee.class); employeeMono.subscribe(System.out::println);
类似地,要从endpoint/employees检索Flux类型的集合资源,请执行以下操作:
Flux<Employee> employeeFlux = client.get() .uri("/employees") .retrieve() .bodyToFlux(Employee.class); employeeFlux.subscribe(System.out::println);
我们可以使用Spring Security来保护我们的反应端点。
假设我们在EmployeeController中有一个新的端点。此端点更新员工详细信息并发回更新的员工。
由于这允许用户更改现有员工,因此我们希望仅将此端点限制为管理员角色用户。
让我们为EmployeeController添加一个新方法:
@PostMapping("/update") private Mono<Employee> updateEmployee(@RequestBody Employee employee) { return employeeRepository.updateEmployee(employee); }
现在,为了限制对该方法的访问,让我们创建SecurityConfig并定义一些基于路径的规则以仅允许管理员用户:
@EnableWebFluxSecurity public class EmployeeWebSecurityConfig { // ... @Bean public SecurityWebFilterChain springSecurityFilterChain( ServerHttpSecurity http) { http.csrf().disable() .authorizeExchange() .pathMatchers(HttpMethod.POST, "/employees/update").hasRole("ADMIN") .pathMatchers("/**").permitAll() .and() .httpBasic(); return http.build(); } }
看完上述内容,你们掌握如何正确的使用Spring WebFlux的方法了吗?如果还想学到更多技能或想了解更多相关内容,欢迎关注亿速云行业资讯频道,感谢各位的阅读!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。