Myeclipse报错:“Versions of Spring facet could not be detected”的解决方法

时间:2022-08-06 15:57:05

环境:myeclipse2014

解决方法:

1、取消Migration窗口后,在项目目录下新建.springBeans(不是新建.springBeans.xml文件,也不可以直接在windows下新建.springBeans,会提示必须输入文件名),在IDE环境里右键new->file,输入.springBeans,这个时候在项目窗口目录下默认是看不见这个文件的,但是workspace里有,只是不方便修改……

2、点击下图的红色方框里那个白色三角形,Filters->去掉.* resources的勾,这个时候可以看见窗口目录下有这个文件了

Myeclipse报错:“Versions of Spring facet could not be detected”的解决方法

3、点选.springBeans文件,右键openwith,使用text编辑器打开,输入以下内容并保存(ps:设置springVersion版本为4.0好像也不行,2.0是可以的)

<?xml version="1.0" encoding="UTF-8"?>
<beansProjectDescription>
  <springVersion>2.0</springVersion>
</beansProjectDescription>

4、菜单栏myeclipse->Migrate project重新导入一下,即可成功(反正我是成功了,哈哈Myeclipse报错:“Versions of Spring facet could not be detected”的解决方法)