moved reactive debugging examples from spring-5-reactive to spring-5-reactive-2

This commit is contained in:
fejera 2019-09-29 16:08:53 +02:00
parent 8a3b8a7e18
commit c4c59a08dd
19 changed files with 2 additions and 8 deletions

View File

@ -6,4 +6,5 @@ This module contains articles about reactive Spring 5
- [Validation for Functional Endpoints in Spring 5](https://www.baeldung.com/spring-functional-endpoints-validation)
- [Logging a Reactive Sequence](https://www.baeldung.com/spring-reactive-sequence-logging)
- [Testing Reactive Streams Using StepVerifier and TestPublisher](https://www.baeldung.com/reactive-streams-step-verifier-test-publisher)
- [Debugging Reactive Streams in Spring 5](https://www.baeldung.com/spring-debugging-reactive-streams)
- More articles: [[<-- prev]](/spring-5-reactive)

View File

@ -28,6 +28,7 @@ public class ConsumerDebuggingApplication {
http.authorizeExchange()
.anyExchange()
.permitAll();
http.csrf().disable();
return http.build();
}
}

View File

@ -2,10 +2,7 @@ package com.baeldung.debugging.consumer.model;
import java.util.concurrent.ThreadLocalRandom;
import org.springframework.data.annotation.Id;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
@ -16,7 +13,6 @@ import lombok.Setter;
@AllArgsConstructor
public class Foo {
@Id
private Integer id;
private String formattedName;
private Integer quantity;

View File

@ -1,7 +1,5 @@
package com.baeldung.debugging.server.model;
import org.springframework.data.annotation.Id;
import lombok.AllArgsConstructor;
import lombok.Data;
@ -9,7 +7,6 @@ import lombok.Data;
@AllArgsConstructor
public class Foo {
@Id
private Long id;
private String name;

View File

@ -18,6 +18,5 @@ The "REST With Spring" Classes: https://bit.ly/restwithspring
- [Server-Sent Events in Spring](https://www.baeldung.com/spring-server-sent-events)
- [A Guide to Spring Session Reactive Support: WebSession](https://www.baeldung.com/spring-session-reactive)
- [Debugging Reactive Streams in Spring 5](https://www.baeldung.com/spring-debugging-reactive-streams)
- [Static Content in Spring WebFlux](https://www.baeldung.com/spring-webflux-static-content)
- More articles: [[next -->]](/spring-5-reactive-2)