is It necessary to call ApplicationContext.start
I found without using start method, I can still create beans. What's the main purpose of ApplicationContext.s开发者_如何学JAVAtart()?
The start() method is required by the Lifecycle interface, which is primarily used to support asynchronous processing. You shouldn't need to call it on your main application context.
精彩评论