JAVA-25542 Check code of spring-reactive ebook (#14880)
Co-authored-by: timis1 <noreplay@yahoo.com>
This commit is contained in:
parent
e331611860
commit
ca1590cc66
@ -1,4 +1,3 @@
|
|||||||
## Relevant Articles
|
## Relevant Articles
|
||||||
- [How to Resolve Spring Webflux DataBufferLimitException](https://www.baeldung.com/spring-webflux-databufferlimitexception)
|
- [How to Resolve Spring Webflux DataBufferLimitException](https://www.baeldung.com/spring-webflux-databufferlimitexception)
|
||||||
- [Custom WebFlux Exceptions in Spring Boot 3](https://www.baeldung.com/spring-boot-custom-webflux-exceptions)
|
- [Custom WebFlux Exceptions in Spring Boot 3](https://www.baeldung.com/spring-boot-custom-webflux-exceptions)
|
||||||
- [Handling Errors in Spring WebFlux](https://www.baeldung.com/spring-webflux-errors)
|
|
@ -14,6 +14,7 @@ This module contains articles describing reactive processing in Spring.
|
|||||||
- [Spring 5 WebClient](https://www.baeldung.com/spring-5-webclient)
|
- [Spring 5 WebClient](https://www.baeldung.com/spring-5-webclient)
|
||||||
- [Spring WebClient vs. RestTemplate](https://www.baeldung.com/spring-webclient-resttemplate)
|
- [Spring WebClient vs. RestTemplate](https://www.baeldung.com/spring-webclient-resttemplate)
|
||||||
- [Spring WebClient Requests with Parameters](https://www.baeldung.com/webflux-webclient-parameters)
|
- [Spring WebClient Requests with Parameters](https://www.baeldung.com/webflux-webclient-parameters)
|
||||||
|
- [Handling Errors in Spring WebFlux](https://www.baeldung.com/spring-webflux-errors)
|
||||||
- [Spring Security 5 for Reactive Applications](https://www.baeldung.com/spring-security-5-reactive)
|
- [Spring Security 5 for Reactive Applications](https://www.baeldung.com/spring-security-5-reactive)
|
||||||
- [Concurrency in Spring WebFlux](https://www.baeldung.com/spring-webflux-concurrency)
|
- [Concurrency in Spring WebFlux](https://www.baeldung.com/spring-webflux-concurrency)
|
||||||
|
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
<groupId>com.baeldung</groupId>
|
<groupId>com.baeldung</groupId>
|
||||||
<artifactId>parent-boot-3</artifactId>
|
<artifactId>parent-boot-3</artifactId>
|
||||||
<version>0.0.1-SNAPSHOT</version>
|
<version>0.0.1-SNAPSHOT</version>
|
||||||
<relativePath>../../parent-boot-3/pom.xml</relativePath>
|
<relativePath>../../parent-boot-3</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
package com.baeldung.spring.reactive.errorhandling;
|
package com.baeldung.reactive.errorhandling;
|
||||||
|
|
||||||
import org.springframework.boot.SpringApplication;
|
import org.springframework.boot.SpringApplication;
|
||||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
@ -1,4 +1,4 @@
|
|||||||
package com.baeldung.spring.reactive.errorhandling;
|
package com.baeldung.reactive.errorhandling;
|
||||||
|
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
@ -1,4 +1,4 @@
|
|||||||
package com.baeldung.spring.reactive.errorhandling;
|
package com.baeldung.reactive.errorhandling;
|
||||||
|
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
@ -1,4 +1,4 @@
|
|||||||
package com.baeldung.spring.reactive.errorhandling;
|
package com.baeldung.reactive.errorhandling;
|
||||||
|
|
||||||
import org.springframework.http.HttpStatus;
|
import org.springframework.http.HttpStatus;
|
||||||
import org.springframework.http.MediaType;
|
import org.springframework.http.MediaType;
|
@ -1,4 +1,4 @@
|
|||||||
package com.baeldung.spring.reactive.errorhandling;
|
package com.baeldung.reactive.errorhandling;
|
||||||
|
|
||||||
import org.springframework.http.HttpStatus;
|
import org.springframework.http.HttpStatus;
|
||||||
import org.springframework.web.server.ResponseStatusException;
|
import org.springframework.web.server.ResponseStatusException;
|
@ -1,4 +1,4 @@
|
|||||||
package com.baeldung.spring.reactive.errorhandling;
|
package com.baeldung.reactive.errorhandling;
|
||||||
|
|
||||||
import static org.springframework.http.MediaType.TEXT_PLAIN;
|
import static org.springframework.http.MediaType.TEXT_PLAIN;
|
||||||
import static org.springframework.web.reactive.function.server.RequestPredicates.GET;
|
import static org.springframework.web.reactive.function.server.RequestPredicates.GET;
|
@ -1,4 +1,4 @@
|
|||||||
package com.baeldung.spring.reactive.errorhandling;
|
package com.baeldung.reactive.errorhandling;
|
||||||
|
|
||||||
import org.junit.jupiter.api.Test;
|
import org.junit.jupiter.api.Test;
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
Loading…
x
Reference in New Issue
Block a user