-
Notifications
You must be signed in to change notification settings - Fork 32
Release version compatible with SpringBoot 3.0 #88
Comments
I'm using it on spring boot 3.x and its working with a few workarounds, but I don't know if you working on it actively nor I could help with the 3.x compatibility. |
Hi @joaquinjsb. Pls feel free to submit your PR. |
@joaquinjsb if you could share your solution. I'm currently struggling with SB 3.0.2 which does not automatically creates beans with different AMQPs. |
I created a component like this: @ConditionalOnProperty(prefix = "spring", name = "multirabbitmq.enabled", havingValue = "true")
@EnableRabbit
@Import({MultiRabbitAutoConfiguration.class, RabbitAutoConfiguration.class})
@Component
public class RabbitMQConnector {
} for some reason the auto scan of the package isn't working, so I just copied the parameter on my custom class, and it's working back like it used to. |
Well, I did as you say, but with no result. There is no such error with SB 2.7.x I'm using SB 3.0.2 Any ideas? |
do you mind creating me a sample project? I can give a look to it. |
Sure, here you can find it. But it's working now. What I did not do... I didn't have the default |
Thanks. One more question. In fact, the one I'm connecting to is of type 'topic' |
OK, I've solved the issue by putting |
What is the status on this issue? I would like to update to SB3 with a SB3-compatible multirabbit. I see the workaround. Can't this simply be integrated into the multirabbit project for a SB3-compatible multirabbit? |
On some investigation, I think the issue that appears here is documented in the release notets of SB3: |
Please see #95 |
TBD:
The text was updated successfully, but these errors were encountered: