엔드포인트 메서드 어노테이션의 잘못된 채널 속성을 보고합니다(@Gateway, @ServiceActivator, @Filter 등).
예:
@Component
public class MyComponent {}
@Gateway(requestChannel = "requestChannel", replyChannel = "replyChannel")
public void gateway() {...}
@Gateway(
requestChannel ="simpleBean", // Bean이 다음 타입 중 하나여야 합니다 org.springframework.integration.MessageChannel,org.springframework.messaging.MessageChannel
replyChannel = "unknownChannel") // 채널을 찾을 수 없습니다
public void errors() {...}
@Bean
public MyBean simpleBean() {...}
}