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

“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");

    }

}

---哦了

时间: 2024-10-13 19:31:28

The constructor ClassPathXmlApplicationContext(String) refers to the missing type BeansException的相关文章

The method getContextPath() from the type HttpServletRequest refers to the missing type

由于经常在工作室和住处之间用的是不同电脑,今天将一个项目从工作室电脑拷到宿舍之后,将整个项目部署好之后,在每个JSP页面中的"request.getContextPath()"下方出现了红色的波浪线,提示的错误信息是"The method getContextPath() from the type HttpServletRequest refers to the missing type String", 此时,解决方式是: 1 右击该项目 - Build Pat

The method queryForMap(String, Object...) from the type JdbcTemplate refers to the missing type DataAccessException

Add spring-tx jar of your spring version to your classpath.

The method xx from the type xx refers to the missing type List等问题的解决办法

这个问题真的是在网上找了好久 导入项目之后运行就出现500错误然后错误显示这个 在网上查阅之后发现两种种解决办法 1. # 将import删掉,重新导入. 重新导入后,可以发现错误立马消失了,但是一会儿还是回归之前的状态,不过有些人通过这种方式解决了错误. 2. # build path 全部remove再添加 以eclipse为例,右键项目 -> build path -> configure ,将显示的四个全部remove,再add添加上. 我就是用的第二种解决的 原文地址:https:/

升级AutoMapper后遇到的“Missing map”与“Missing type map configuration or unsupported mapping”问题

前几天发现 AutoMapper 3.3 的一个性能问题(详见:遭遇AutoMapper性能问题:映射200条数据比100条慢了近千倍),于是将 AutoMapper 升级至最新的 5.1.1 看是否也存在这个性能问题. 升级中想当然地将之前的map配置代码: Mapper.CreateMap<AEntity, ADto>(); Mapper.CreateMap<BEntity, BDto>(); 改为: Mapper.Initialize(cfg => cfg.Create

error C4430: missing type specifier - int assumed. Note: C++ does not support default-int(转)

error C4430: missing type specifier - int assumed. Note: C++ does not support default-int 错误类型: 缺失类型表述 错误原因: 函数前未写函数的返回类型,由此导致了这个错误 解决方法: 以后写函数,不管是声明还是定义,都要加上返回类型,尤其是返回类型是VOID时,更要加上 不要省略 error C4430: missing type specifier - int assumed. Note: C++ do

error C4430: missing type specifier - int assumed. Note: C++ does not support default-int

最近发现一个奇怪的错误,错误提示如下: error C4430: missing type specifier - int assumed. Note: C++ does not support default-int 出现该段错误的源码(某公司校招技术笔试题)如下: #include<iostream> using namespace std; main() { long x=65530; long countx=0; while(x) { countx++; x=x&(x-1);

(转)java.lang.RuntimeException: Missing type parameter

java.lang.RuntimeException: Missing type parameter (2015-04-07 14:35:51)   分类: 技术 程序中用到了gson的new typeToken,结果打包成apk发布时,发现抛出异常,但不通过打包apk时发现一切正常,百思不得其解,最初怀疑没有将gson-1.7.1.JAR打包进去,后来经过测试发现gson的其他方法经过打包也能正常运行,最后上网找了2天,终于在google gson论坛中找到了解决方法. 在 proguard-

android &quot;Missing type parameter&quot; 错误

最近在做android应该的时候出现这个问题,分析了一下日志,发现是在gosn解析的时候会出现,而且出现的时候很诡异.于是去网上找相关资料. 发现这个问题还是比较常见的,原来是发布版本和非正式发布版的apk的代码内部变量会进行混淆.而gosn是调用的反射机制,当实例化变量的时候会出现错误. 解决办法 在 proguard-project.txt 文件中添加 -dontobfuscate -dontoptimize

如果配置spring时出现 It is indirectly referenced from required .class files

运行代码是出现如下错误信息: Exception in thread "main" java.lang.Error: Unresolved compilation problems: The type org.springframework.beans.BeansException cannot be resolved. It is indirectly referenced from required .class files The constructor ClassPathXml