码迷,mamicode.com
首页 > 移动开发 > 详细

The constructor ClassPathXmlApplicationContext(String) refers to the missing type BeansException

时间:2017-09-19 15:02:06      阅读:636      评论:0      收藏:0      [点我收藏+]

标签:分享   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

标签:分享   text   方案   构造函数   pre   工具   pac   .class   bsp   

原文地址:http://www.cnblogs.com/zhangyu0217----/p/7550874.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!