解决方法如下:

VERSION OF SPRING FACET COULD NOT BE DETECTED.

The migration process needs to detect the correct version of Spring support used by a project. If the process fails to detect the version based on containers used by the project, it tries to read it from the .springBeans file. If the file is missing, the migration process is unable to continue.

You need to manually create the file in the root of the project, before invoking the Migration wizard. To do so, right-click the project, and select New>File from the menu. Enter .springBeans as the file name, and click Finish. The .springBeans file editor should open. Paste the following code into it, and save the file.

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

Now you can rerun the migration process by selecting MyEclipse>Migrate Projects from theMyEclipsemenu, or run the process from the Project Migration view.

Note: The .springBeans file might not appear in the Package Explorer view; you will need to disable the.* resources filter to see it. To do so, click the white triangle (View menu) in the top-right corner of the Package Explorer view and select Filters. Next, deselect the .* resources filter, and click OK. You should now be able to see the .springBeans file.

译:

1.新建文件(file),命名为:.springBeans,不能有后缀,如果不能新建这样的文件,就在IDE中新建这样的文件(file)

2.将下文粘贴进.springBeans,不能有任何修改

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

3.将文件复制粘贴到项目根目录

4.导入项目至IDE就不会报这个错误了

最新文章

  1. datagrid与webAPI的数据交互(ef mvc )
  2. RequireJS 模块的定义与加载
  3. SLAM数据集
  4. oracle 设置标识列自增
  5. -bash: lampp: command not found解决方案
  6. 坑爹的UICollectionView
  7. DLP显示单元(威创)
  8. HttpURLConnection碰到连续302跳转的问题的原因及解决方法
  9. IDA Pro使用
  10. how computer boot up?
  11. Gradle学习笔记之Groovy
  12. springMVC源码分析--异常处理机制HandlerExceptionResolver执行原理(二)
  13. 微信接口 output {&quot;errMsg&quot;:&quot;translateVoice:fail, the permission value is offline verifying&quot;}
  14. opencv2函数学习之threshold:实现图像阈值化
  15. eclipse中查看安装的所有插件,并选择性的将其卸载
  16. navicat for mysql只导出数据表结构
  17. C中预编译详解
  18. 【微信公众号】微信关于网页授权access_token和普通access_token的区别及两种不同方式授权
  19. hibernate的 lazy 和 fetch 一般配置
  20. [原创]关于设置linux中vim 显示行号

热门文章

  1. 一次Mysql连接池卡死导致服务无响应问题分析(.Net Mysql.Data 6.9.9)
  2. 百度的富文本编辑器UEDITOR
  3. 为什么 UEFI 方式启动的 U 盘必须使用 FAT32 文件系统?
  4. .NET中的那些受特别对待的类型(CriticalFinalizerObject)
  5. CALayer1-简介
  6. c#开发的程序安装时动态指定windows服务名称
  7. 【转】简明 Python 教程
  8. 【经验】实现STL算法时遇到的模板编译错误问题
  9. GOF23设计模式之装饰模式(decorator)
  10. POJ 3276 Face The Right Way(反转)