Artem Bilan
Artem Bilan
I mean the issue is there, but it is not a part of Spring Integration to fix. @philwebb , any thoughts about quoting MBean names in Spring Boot? Or let's...
Oh! Sorry, @Stiuil06 . The `MqttPahoMessageDrivenChannelAdapter` is not a `MessageSource`. It has to be configured as a bean instead to get a proper bean name: ``` @Bean public MqttPahoMessageDrivenChannelAdapter myMqttEndpoint()...
On the other hand it is not clear how this Spring Integration component (marked with `@IntegrationManagedResource`) get processed by the regular `org.springframework.jmx.export.MBeanExporter`, since there is indeed appropriate auto-configuration: ``` /**...
OK. Another solution is for you like this: ``` org.springframework.integration spring-integration-jmx ``` So, all Spring Integration components are going to be registered in JMX by the Spring Integration mechanism. Anyway...
@Stiuil06 , would you mind sharing with us your final experience? Plus, would you mind moving this issue into https://github.com/spring-projects/spring-framework/issues ? It looks like we agreed with Spring Boot team...
Great! Good to know that workaround has made it! Well, looks like I don't have permissions to move issue over there. Maybe @philwebb can do that for us, but I...
Thanks, @Stiuil06 ! We will keep this issue opened until resolution on that SF one. We may just remove the mention logic here in favor of a new one in...
@dividebyzero , I'm sorry to hear about your bad experience, but unfortunately that code snippet does nothing with JMX, so the problem you are facing is really out of that...
Just to be sure that we are on the same page: writing channel adapters is fully irrelevant if they are used in Java DSL or not. The Java DSL is...
See this docs: https://docs.spring.io/spring-integration/docs/current/reference/html/reactive-streams.html#reactive-reply-payload for some insight. And yes: it is really per `MessageHandler` impl to determine if it is reactive or not, or can fit to reactive processing downstream...