RockteMQ-AI commented on issue #723: URL: https://github.com/apache/rocketmq-spring/issues/723#issuecomment-5473197272
**Issue Evaluation** Category: `question` | Status: **Answered** These warnings are caused by Spring Boot's bean initialization order. The `RocketMQMessageListenerBeanPostProcessor` depends on beans from `ListenerContainerConfiguration` and `MessageConverterConfiguration`, which causes them to be initialized earlier than typical. **This is a harmless warning** — it does not affect functionality. The beans are still created correctly; they just bypass some post-processors (like auto-proxying) because they are needed early. **Possible fix (for maintainers):** Adjust the auto-configuration to use `@DependsOn` or `@Lazy` annotations to control initialization order, or defer the `RocketMQMessageListenerBeanPostProcessor` registration. For users: you can safely ignore these warnings, or suppress them by adding to `application.properties`: ``` logging.level.org.springframework.context.support=ERROR ``` --- *Automated evaluation by RockteMQ-AI* -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
