eclipse maven工程导入到MyEclipse出现"Versions of Spring facet could not be detected”的解决方法

引用http://blog.csdn.net/jzl_11/article/details/53668071

导入Maven项目遇到问题,显示

eclipse maven工程导入到MyEclipse出现"Versions of Spring facet could not be detected”的解决方法

解决方案:

1.在报错的project  根目录下创建 new -->file    文件名为.springBeans   ;

2.在file内粘贴以下代码

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

3.重新导入工程,就不会报错了。