博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Eclipse rcp 开发 : 集成aptana
阅读量:6431 次
发布时间:2019-06-23

本文共 1487 字,大约阅读时间需要 4 分钟。

hot3.png

aptana 3.0  update site :  我使用的安装环境是eclipse luna 4.4.2  64位

如果是全部集成,只需要在product 里面添加所有的aptana的jar 即可。在此说明一下,aptana 和eclipse 里面有2个Jar 冲突。httpclient 和 httpcore 。aptana使用的是4.2 ,而eclipse 里面添加是其它版本。如果要是自动添加,并不会增加aptana默认的4.2的版本。

如果使用的eclipse没有别的开发用途的话,建议,直接从Plugins 文件夹里面删除掉多余的jar 。即可解决上述问题。

1. 我本地使用的只需要 html,css,js,xml 这4个编辑器。在product 里面,选择"Add" 添加 com.aptana.editor.xml  , com.aptana.editor.css, com.aptana.editor.html ,com.aptana.editor.js .这4个Jar 。选择“Add Required Plug-ins”,会自动添加其余的Jar。

2. 添加完成后,提示,样式等并没有增加完成,继续增加。com.aptana.editor.haml 和 com.aptana.terminal  再次点击“Add Required Plug-ins”。直接启动即可。

3.在开发过程中,发现编辑器无法绑定。强制绑定编辑器

      //默认编辑器private String jsExtension ="*.js";private String htmlExtension ="*.html";private String cssExtension ="*.css";private String jsonExtension ="*.json";private String xmlExtension ="*.xml";private String jsEditorId = "com.aptana.editor.js";private String htmlEditorId = "com.aptana.editor.html";private String cssEditorId = "com.aptana.editor.css";private String jsonEditorId = "com.aptana.editor.json";private String xmlEditorId = "com.aptana.editor.xml";            //初始化编辑器,强制改变默认编辑类型     editorRegistry.setDefaultEditor(jsExtension, jsEditorId);     editorRegistry.setDefaultEditor(htmlExtension, htmlEditorId);     editorRegistry.setDefaultEditor(cssExtension, cssEditorId);     editorRegistry.setDefaultEditor(jsonExtension, jsonEditorId);     editorRegistry.setDefaultEditor(xmlExtension, xmlEditorId);

转载于:https://my.oschina.net/liuyi126/blog/400735

你可能感兴趣的文章
块数据 大数据时代真正到来的标志
查看>>
这是一篇最通熟易懂的Hadoop HDFS实践攻略!
查看>>
人工智能与机器学习有哪些不同
查看>>
小型数据中心的冷却措施急需优化
查看>>
报告称2022年5G用户数将达5亿
查看>>
眼见未必为实 DARPA欲上图像篡改项目
查看>>
加班能体现编程的热情吗?
查看>>
希捷和Newisys推出传输速度每秒1TB的闪存存储架构
查看>>
大数据在2017年发展的8个预测
查看>>
有豪车,有帅哥,还有轻松年入十万美金的方法 | 宅客周刊
查看>>
移动端界面中的版式设计原理(上)
查看>>
打造SDN容器百宝箱(二)
查看>>
如何隐藏Apache版本号和其它敏感信息
查看>>
从数据展望 2017年闪存市场发展新趋势
查看>>
《新编计算机科学概论》一导读
查看>>
《高性能Linux服务器构建实战》——2.8节本章小结
查看>>
人工智能加持,两位清华学霸想让投资更聪明
查看>>
加密全球Web的计划正在变成现实
查看>>
2017年虚拟化的五大安全趋势
查看>>
中小企业视频会议系统选型:功能与成本并重
查看>>