欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Spring常见错误---自用

程序员文章站 2022-04-15 22:05:17
...

错误1

BeanFactory not initialized or already closed - call 'refresh' before accessing beans via the ApplicationContext

原因没有指定xml文件
正确格式

ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");

错误格式

ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext();

错误2

Caused by: java.lang.NoClassDefFoundError: org/springframework/aop/TargetSource

原因缺少相关jar包

相关标签: Exception