標籤:分享 text 方案 建構函式 pre 工具 pac .class bsp
“The constructor ClassPathXmlApplicationContext(String) refers to the missing type BeansException”
“建構函式ClassPathXmlApplicationContext(字串)是指缺失類型BeansException”
出現錯誤的原因:jar沒有正確引入,即使表面上你能import包。
import org.junit.Test;import org.springframework.context.ApplicationContext;import org.springframework.context.support.ClassPathXmlApplicationContext;
如果你用的eclipes解決 方案:
進入你的maven倉庫,本地的,刪除關於spring-core,spring-context,刪除了之後,讓工具重新下載一下
然後update maven一下 就ok了
package zy.test;import org.junit.Test;import org.springframework.context.ApplicationContext;import org.springframework.context.support.ClassPathXmlApplicationContext;public class TestUser { @Test public void Test(){ ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml"); }}
---哦了
The constructor ClassPathXmlApplicationContext(String) refers to the missing type BeansException