JAVA-25542 Check code of spring-reactive ebook (#14880)

Co-authored-by: timis1 <noreplay@yahoo.com>
This commit is contained in:
timis1 2023-10-03 07:25:06 +03:00 committed by GitHub
parent e331611860
commit ca1590cc66
10 changed files with 10 additions and 10 deletions

View File

@ -1,4 +1,3 @@
## Relevant Articles
- [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)
- [Handling Errors in Spring WebFlux](https://www.baeldung.com/spring-webflux-errors)
- [Custom WebFlux Exceptions in Spring Boot 3](https://www.baeldung.com/spring-boot-custom-webflux-exceptions)

View File

@ -14,6 +14,7 @@ This module contains articles describing reactive processing in Spring.
- [Spring 5 WebClient](https://www.baeldung.com/spring-5-webclient)
- [Spring WebClient vs. RestTemplate](https://www.baeldung.com/spring-webclient-resttemplate)
- [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)
- [Concurrency in Spring WebFlux](https://www.baeldung.com/spring-webflux-concurrency)

View File

@ -9,7 +9,7 @@
<groupId>com.baeldung</groupId>
<artifactId>parent-boot-3</artifactId>
<version>0.0.1-SNAPSHOT</version>
<relativePath>../../parent-boot-3/pom.xml</relativePath>
<relativePath>../../parent-boot-3</relativePath>
</parent>
<dependencies>

View File

@ -1,4 +1,4 @@
package com.baeldung.spring.reactive.errorhandling;
package com.baeldung.reactive.errorhandling;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

View File

@ -1,4 +1,4 @@
package com.baeldung.spring.reactive.errorhandling;
package com.baeldung.reactive.errorhandling;
import org.springframework.http.HttpStatus;
import org.springframework.http.MediaType;

View File

@ -1,4 +1,4 @@
package com.baeldung.spring.reactive.errorhandling;
package com.baeldung.reactive.errorhandling;
import org.springframework.http.HttpStatus;
import org.springframework.web.server.ResponseStatusException;

View File

@ -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.web.reactive.function.server.RequestPredicates.GET;

View File

@ -1,4 +1,4 @@
package com.baeldung.spring.reactive.errorhandling;
package com.baeldung.reactive.errorhandling;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;