Skip to content

Tag: spring

@Qualifier in Spring on top of classes

I’ve been playing around in Spring/Spring Boot and notice something strange which I can’t really dig on my own, so any help would be appreciated. Let’s say we have the following I am running a Spring Boot program, so everything is set up correctly, this is for simplicity. At this point, if w…

spring boot boostrap bean override

In my spring.factories I have such a definition: In MyBootstrapConfiguration I have : Now in my test (junit-5 and @SpringBootTest), I would like to override this bean. Notice the @ConditionalOnMissingBean… If I can hook somehow to a “before” my bootstrap is started, to provide that ApiClient…