Skip to content

getBean(Object.class) fails when introspecting Environment bean [SPR-10542] #15172

New issue

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

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

Already on GitHub? Sign in to your account

Closed
spring-projects-issues opened this issue May 8, 2013 · 4 comments
Assignees
Labels
in: core Issues in core modules (aop, beans, core, context, expression) status: backported An issue that has been backported to maintenance branches type: bug A general bug
Milestone

Comments

@spring-projects-issues
Copy link
Collaborator

spring-projects-issues commented May 8, 2013

James Shaw opened SPR-10542 and commented

Trying to access a bean of type Object gives the backtrace:

Exception in thread "main" org.springframework.beans.factory.NoSuchBeanDefinitionException: No bean named 'environment' is defined
	at org.springframework.beans.factory.support.DefaultListableBeanFactory.getBeanDefinition(DefaultListableBeanFactory.java:568)
	at org.springframework.beans.factory.support.DefaultListableBeanFactory.getBean(DefaultListableBeanFactory.java:264)
	at org.springframework.context.support.AbstractApplicationContext.getBean(AbstractApplicationContext.java:1125)
	at Test.main(Test.java:7)

See attached test case to reproduce.


Affects: 3.2.2

Attachments:

Issue Links:

Referenced from: commits 9d3d6d5, e89f18b, 21d0ce5

Backported to: 4.0.7, 3.2.11

@spring-projects-issues
Copy link
Collaborator Author

Phil Webb commented

There are several internal infrastructure beans registered by default with the context so calling applicationContext.getBean(Object.class) does not make much sense (but admittedly the error message is not great).

What are you trying to achieve with this call?

@spring-projects-issues
Copy link
Collaborator Author

James Shaw commented

If I remember correctly, I was writing an integration test where the contents of the ApplicationContext were unimportant. I admit that I can't think of terribly many use cases for this ;)

@spring-projects-issues
Copy link
Collaborator Author

Juergen Hoeller commented

Even if this is an unlikely use case, getBean(Class) needs to be able to handle singletons beans without a backing bean definition as well, if they turn out to be a type match...

Juergen

@spring-projects-issues
Copy link
Collaborator Author

Juergen Hoeller commented

Fixed for 4.1 GA through an additional containsBeanDefinition check, leading to a proper NoUniqueBeanDefinitionException. To be backported to 4.0.7 and 3.2.11 as well.

Juergen

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
in: core Issues in core modules (aop, beans, core, context, expression) status: backported An issue that has been backported to maintenance branches type: bug A general bug
Projects
None yet
Development

No branches or pull requests

2 participants