Autowiring against a closed ApplicationContext should consistently fail [SPR-12932] #17525
Labels
in: core
Issues in core modules (aop, beans, core, context, expression)
type: enhancement
A general enhancement
Milestone
Sam Brannen opened SPR-12932 and commented
Status Quo
It is currently possible to autowire against an
ApplicationContext
that has been closed. However, attempting to do so should result in some sort of exception being thrown. See the example failing tests below.This issue was brought to our attention when integration tests in the Spring Integration test suite started failing. See INT-3543 for details.
Analysis by Jürgen Höller
AbstractApplicationContext
already invokesassertBeanFactoryActive()
before it delegates to the internalDefaultListableBeanFactory
but of course only for methods on theApplicationContext
itself.The underlying
BeanFactory
doesn't have the notion of a 'closed' state -- it may just have had its singletons destroyed but could, from its perspective, recreate them at any point.The semantically cleaner solution is to perform the assertion in the application context's
getAutowireCapableBeanFactory()
implementation:AbstractRefreshableApplicationContext
subclasses do throw anIllegalStateException
there after closing, butGenericApplicationContext
subclasses don't. The latter needs to be fixed, and thegetAutowireCapableBeanFactory()
Javadoc in theApplicationContext
interface needs to explicitly state that anIllegalStateException
will be thrown after context closing.Example Failing Tests
Example1Test
does not fail until the second line of thetest2()
method, thus demonstrating that the test instance was autowired from a closedApplicationContext
.Example2Test
contains a copy of the actual code fromDependencyInjectionTestExecutionListener.injectDependencies()
, demonstrating that autowiring against a closedApplicationContext
in fact does not throw any kind of exception.Affects: 4.1.2, 4.1.6
Issue Links:
@DirtiesContext
Referenced from: commits 706d3ad, 93f403c
The text was updated successfully, but these errors were encountered: