But sadly all answers that state "just move from @MockBean to @MockitoBean" oversee that behavior has changed.
While i have a Testclass with a @MockBean at field level i avoid that the real Bean from application context is created.
With just the move to @MockitoBean the real Bean from the app context is now created additonally.
Behavior is different. While with the old behavior i could do the trick to 'disable' the creation of my real Bean which else will trigger some Quobyte polling for example i cant do it anymore.