Osgi导出的产品不能独立启动的问题之一的解决

Stella981
• 阅读 616

现象:用eclipse的导出工具,生成一个产品目录,点击里面的执行文件,报错:

The xx executable launcher was unable to locate its companion shared library

国内网上搜了一下,都是eclipse自己启动时报这个错,基本上的解决方案如下:

修改Myeclipse.ini文件

-startup
../Common/plugins/org.eclipse.equinox.launcher_1.0.201.R35x_v20090715.jar
--launcher.library
../Common/plugins/org.eclipse.equinox.launcher.win32.win32.x86_1.0.200.v20090519
-install
D:/Program Files/Genuitec/MyEclipse-8.6
-vm
D:/ProgramFiles/Genuitec/Common/binary/com.sun.java.jdk.win32.x86_1.6.0.013/jre/bin/client/jvm.dll
-configuration
configuration
-vmargs
-Xmx512m
-XX:MaxPermSize=256m
-XX:ReservedCodeCacheSize=64m

不能解决独立osgi产品的运行问题,但是eclipse也是osgi框架,对比ini后发现,产品ini里没有“startup”的描述,判断是自动产生的配置里缺少一块儿,最后在一个老外的网页上看到一些解释,网址如下:

http://devblog.virtage.com/2012/09/equinox-launcher-error-the-xy-executable-launcher-was-unable-to-locate-its-companion-shared-library/

转帖文字如下:

Sometimes in your Eclipse RCP/Equinox based development you may encounter this error. In this short tip I will explain the reason of this error and it can be fixed.

Osgi导出的产品不能独立启动的问题之一的解决

Replace name of “plexflow-server” with “your-app”.

Small recap

Launcher is platform-specific part of Eclipse Equinox that eases launching OSGi Framework and provides more native feeling from starting Eclipse RCP or OSGi based applications to the end users.

Launching in native way is composed of three parts: native exacutable itself, platform specific library and Java launcher JAR.

You can read more about Equinox launcher in my previous post.

Why?

Native launcher cannot locate shared library. It is missing inplugins/folder or is not in folder (exploded) form so native launcher cannot load load it.

Make sure that your build app has this layout:

+ your-app/ 
+--- your-app.exe
+--+ plugins/
   +---- prg.eclipse.equinox.launcher_<os>.<ws>.<arch>_<version>/
       +--- eclipse_1502.so (Linux) OR
       +--- eclipse_1503.dll (Win) OR
       +--- eclipse_1503.so (Mac)

==========最终解决方案=======

把eclipse的plugins目录下的

org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.200.v20130807-1835目录

和org.eclipse.equinox.launcher_1.3.0.v20130327-1440.jar包

copy到产品plugins目录下,

在产品ini文件中添加-startup这段配置,

再次执行启动脚本,成功通过。

点赞
收藏
评论区
推荐文章
blmius blmius
3年前
MySQL:[Err] 1292 - Incorrect datetime value: ‘0000-00-00 00:00:00‘ for column ‘CREATE_TIME‘ at row 1
文章目录问题用navicat导入数据时,报错:原因这是因为当前的MySQL不支持datetime为0的情况。解决修改sql\mode:sql\mode:SQLMode定义了MySQL应支持的SQL语法、数据校验等,这样可以更容易地在不同的环境中使用MySQL。全局s
Easter79 Easter79
3年前
swap空间的增减方法
(1)增大swap空间去激活swap交换区:swapoff v /dev/vg00/lvswap扩展交换lv:lvextend L 10G /dev/vg00/lvswap重新生成swap交换区:mkswap /dev/vg00/lvswap激活新生成的交换区:swapon v /dev/vg00/lvswap
皕杰报表之UUID
​在我们用皕杰报表工具设计填报报表时,如何在新增行里自动增加id呢?能新增整数排序id吗?目前可以在新增行里自动增加id,但只能用uuid函数增加UUID编码,不能新增整数排序id。uuid函数说明:获取一个UUID,可以在填报表中用来创建数据ID语法:uuid()或uuid(sep)参数说明:sep布尔值,生成的uuid中是否包含分隔符'',缺省为
Jacquelyn38 Jacquelyn38
3年前
2020年前端实用代码段,为你的工作保驾护航
有空的时候,自己总结了几个代码段,在开发中也经常使用,谢谢。1、使用解构获取json数据let jsonData  id: 1,status: "OK",data: 'a', 'b';let  id, status, data: number   jsonData;console.log(id, status, number )
Wesley13 Wesley13
3年前
Java日期时间API系列36
  十二时辰,古代劳动人民把一昼夜划分成十二个时段,每一个时段叫一个时辰。二十四小时和十二时辰对照表:时辰时间24时制子时深夜11:00凌晨01:0023:0001:00丑时上午01:00上午03:0001:0003:00寅时上午03:00上午0
Wesley13 Wesley13
3年前
00:Java简单了解
浅谈Java之概述Java是SUN(StanfordUniversityNetwork),斯坦福大学网络公司)1995年推出的一门高级编程语言。Java是一种面向Internet的编程语言。随着Java技术在web方面的不断成熟,已经成为Web应用程序的首选开发语言。Java是简单易学,完全面向对象,安全可靠,与平台无关的编程语言。
Wesley13 Wesley13
3年前
Unity横屏
Android下发现Unity里面的Player设置,并不能完全有效,比如打开了自动旋转,启动的时候还是会横屏,修改XML添加以下代码<applicationandroid:icon"@drawable/ic\_launcher"                    android:label"@string/app\_name"
Stella981 Stella981
3年前
Django中Admin中的一些参数配置
设置在列表中显示的字段,id为django模型默认的主键list_display('id','name','sex','profession','email','qq','phone','status','create_time')设置在列表可编辑字段list_editable
Wesley13 Wesley13
3年前
MySQL部分从库上面因为大量的临时表tmp_table造成慢查询
背景描述Time:20190124T00:08:14.70572408:00User@Host:@Id:Schema:sentrymetaLast_errno:0Killed:0Query_time:0.315758Lock_
Python进阶者 Python进阶者
10个月前
Excel中这日期老是出来00:00:00,怎么用Pandas把这个去除
大家好,我是皮皮。一、前言前几天在Python白银交流群【上海新年人】问了一个Pandas数据筛选的问题。问题如下:这日期老是出来00:00:00,怎么把这个去除。二、实现过程后来【论草莓如何成为冻干莓】给了一个思路和代码如下:pd.toexcel之前把这