Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Add Annotation for bean overriding #15216

Closed
huehnerlady opened this issue Nov 19, 2018 · 6 comments
Closed

Add Annotation for bean overriding #15216

huehnerlady opened this issue Nov 19, 2018 · 6 comments
Labels
for: external-project For an external project and not something we can fix

Comments

@huehnerlady
Copy link

We like the idea that with spring boot 2.1.0 the default value for the property spring.main.allow-bean-definition-overriding is now set to false.

But this comes with a challenge. We have tests which override one specific bean with a mock for integration testing. Now for these tests we get a BeanOverrideException.
We currently use the workaround with setting the property spring.main.allow-bean-definition-overriding to true for these specific tests, but in the end we might miss other overridden beans in a test which makes the app fail to start later. So we have to add another (expensive) Integration test that checks whether the app starts up without any errors.

So my proposal is to add an annotation - kind of similar to @Primary, that says that you actively want to override ONE SPECIFIC bean and make THIS bean primary.

Other idea is to just have an annotation to allow ONE SPECIFIC bean to be overridden and add the @Primary annotation as well.

What do you think?

@spring-projects-issues spring-projects-issues added the status: waiting-for-triage An issue we've not yet triaged label Nov 19, 2018
@wilkinsona
Copy link
Member

It's an interesting suggestion. Thank you. I'd prefer to avoid adding to the programming model if we can, though.

There are a few existing ways, of varying degrees of elegance, to achieve what you want:

  • Use@MockBean to replace a bean with a mock for integration testing
  • Use a BeanPostProcessor in your tests to swap out the bean that's normally used and replace it with a mock
  • Get your hands really dirty and use a BeanFactoryPostProcessor to replace the bean definition. This is what the @MockBean infrastructure does under the covers.

Do any of the above meet your needs?

@wilkinsona wilkinsona added the status: waiting-for-feedback We need additional information before we can continue label Nov 19, 2018
@huehnerlady
Copy link
Author

@wilkinsona this sounds very interesting, I tried the @MockBean annotation which sounds like what I want, but unfortunately this does not work with Spock what we use as a test framework.

In this issue it sounds like you will not provide native support for Spock and the library mentioned in there does ed up in the same problem with the BeanDefinitionOverrideException.

Will there be a change of mind and maybe support spock after all then?

@spring-projects-issues spring-projects-issues added status: feedback-provided Feedback has been provided and removed status: waiting-for-feedback We need additional information before we can continue labels Nov 19, 2018
@wilkinsona
Copy link
Member

Sorry, but I don't think this issue will cause us to change our minds about supporting Spock with @MockBean. It should be possible for the library mentioned in #9372 to avoid the BeanDefinitionOverrideException by calling BeanDefinitionRegistry.removeBeanDefinition(name) before it registers the double. You'd need to do something similar in your own code if you went down the BeanFactoryPostProcessor route in your own code.

@huehnerlady
Copy link
Author

So you will not think about adding such an annotation to the spring boot framework then?

Something like @Override?

@spring-projects-issues spring-projects-issues added status: feedback-provided Feedback has been provided and removed status: waiting-for-feedback We need additional information before we can continue labels Nov 19, 2018
@philwebb
Copy link
Member

@huehnerlady That would be something that the Spring Framework team would need decided. You can raise a JIRA here for them to consider it if you like. I'd personally not be in favor of adding an additional annotation.

@philwebb philwebb added for: external-project For an external project and not something we can fix and removed status: feedback-provided Feedback has been provided status: waiting-for-triage An issue we've not yet triaged labels Nov 19, 2018
@huehnerlady
Copy link
Author

For other people who might be interested: https://jira.spring.io/browse/SPR-17519

# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
for: external-project For an external project and not something we can fix
Projects
None yet
Development

No branches or pull requests

4 participants