exception in thread "main" java.lang.illegalstateexception: beanfactory not initialized or already closed - call 'refresh' before accessing beans via the applicationcontext
时间: 2023-04-30 11:05:40 浏览: 240
java异常 exception
这个错误是由于在使用ApplicationContext之前没有调用refresh()方法,造成容器没有正确初始化和关闭的问题。建议在使用ApplicationContext之前先调用refresh()方法。
阅读全文