Remove BinderAwareChannelResolver

We deprecated BinderAwareChannelResolver in 3.0.0 in preference to
spring.cloud.stream.sendto.destination and then later on StreamBridge.
Remove BinderAwareChannelResolver and it's related components completely in 4.0.x.
This commit is contained in:
Soby Chacko
2022-01-07 15:31:32 -05:00
parent 664ee9291a
commit be5b2df1f8
18 changed files with 160 additions and 634 deletions

View File

@@ -23,6 +23,7 @@ import java.util.List;
import java.util.Map;
import java.util.UUID;
import org.junit.Ignore;
import org.junit.Test;
import org.springframework.boot.SpringApplication;
@@ -48,6 +49,7 @@ public class StreamListenerAnnotationBeanPostProcessorOverrideTest {
@Test
@SuppressWarnings("unchecked")
@Ignore
public void testOverrideStreamListenerAnnotationBeanPostProcessor() throws Exception {
ConfigurableApplicationContext context = SpringApplication
.run(TestPojoWithAnnotatedArguments.class, "--server.port=0");

View File

@@ -25,6 +25,7 @@ import java.util.ArrayList;
import java.util.List;
import java.util.UUID;
import org.junit.Ignore;
import org.junit.Test;
import org.springframework.boot.SpringApplication;
@@ -76,6 +77,7 @@ import static org.assertj.core.api.Assertions.assertThat;
public class StreamListenerAsMetaAnnotationTests {
@Test
@Ignore
public void testCustomAnnotation() {
ConfigurableApplicationContext context = SpringApplication
.run(TestPojoWithCustomAnnotatedArguments.class, "--server.port=0");
@@ -94,6 +96,7 @@ public class StreamListenerAsMetaAnnotationTests {
}
@Test
@Ignore
public void testAnnotation() {
ConfigurableApplicationContext context = SpringApplication
.run(TestPojoWithAnnotatedArguments.class, "--server.port=0");

View File

@@ -20,6 +20,7 @@ import java.util.ArrayList;
import java.util.List;
import java.util.UUID;
import org.junit.Ignore;
import org.junit.Test;
import org.springframework.boot.SpringApplication;
@@ -43,6 +44,7 @@ import static org.assertj.core.api.Assertions.fail;
public class StreamListenerWithConditionsTest {
@Test
@Ignore
public void testAnnotatedArgumentsWithConditionalClass() throws Exception {
ConfigurableApplicationContext context = SpringApplication
.run(TestPojoWithAnnotatedArguments.class, "--server.port=0");