eclipse项目报错怎么解决class path resource [beans.xml] cannot be opened because it does not exist

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了eclipse项目报错怎么解决class path resource [beans.xml] cannot be opened because it does not exist相关的知识,希望对你有一定的参考价值。

参考技术A

从错误提示显示资源beans.xml不存在,无法打开,源目录下beans.xml是不是没有拷贝,一般这种情况是用spring。

1、加上classpath:前缀(这个时候xml要放在当前目录也就是src下)

ApplicationContext ctx=new FileSystemXmlApplicationContext("classpath:applicationContext.xml");

2、加上file:把路径写全(用这个方法xml可以放任意地方)

ApplicationContext ctx=new ClassPathXmlApplicationContext("ApplicationContext ctx=new ClassPathXmlApplicationContext("file:F:/workspace/SpringExercis/src/applicationContext.xml");

扩展资料:

Eclipse是一个开放源代码的软件开发项目,专注于为高度集成的工具开发提供一个全功能的、具有商业品质的工业平台。

主要由Eclipse项目、Eclipse工具项目和Eclipse技术项目三个项目组成,具体包括四个部分组成——Eclipse Platform、JDT、CDT和PDE。JDT支持Java开发、CDT支持C开发、PDE用来支持插件开发,Eclipse Platform则是一个开放的可扩展IDE,提供了一个通用的开发平台。

参考资料来源:百度百科-eclipse

Error creating bean with name 'sqlSessionFactory' defined in class path resource 报错解决

报错:

org.springframework.beans.factory.BeanCreationException: Error creating bean with name \'sqlSessionFactory\' defined in class path resource [org/mybatis/spring/boot/autoconfigure/MybatisAutoConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method \'sqlSessionFactory\' threw exception; nested exception is java.io.FileNotFoundException: class path resource [mybatis/SqlMapConfig.xml] cannot be opened because it does not exist

 

 

 

解决:

在    Application 上加注解:

1 @EnableAutoConfiguration(exclude={DataSourceAutoConfiguration.class})

 

 

 

 

参考文档:

https://www.cnblogs.com/shifu8005/p/9873271.html

 

以上是关于eclipse项目报错怎么解决class path resource [beans.xml] cannot be opened because it does not exist的主要内容,如果未能解决你的问题,请参考以下文章

eclipse无法编译

用eclipse修改jsp或者java文件,eclipse就编译整个项目,导致项目太大怎么解决?

eclipse的tomcat启动报错

eclipse运行maven报错,怎么解决

请问下eclipse中加载进来的项目src报错怎么解决,求大神帮帮忙,还有jsp项目也是错误的

maven第一次运行报错,求帮助