<legend id='jGLDj'><style id='jGLDj'><dir id='jGLDj'><q id='jGLDj'></q></dir></style></legend>

      <bdo id='jGLDj'></bdo><ul id='jGLDj'></ul>

    1. <i id='jGLDj'><tr id='jGLDj'><dt id='jGLDj'><q id='jGLDj'><span id='jGLDj'><b id='jGLDj'><form id='jGLDj'><ins id='jGLDj'></ins><ul id='jGLDj'></ul><sub id='jGLDj'></sub></form><legend id='jGLDj'></legend><bdo id='jGLDj'><pre id='jGLDj'><center id='jGLDj'></center></pre></bdo></b><th id='jGLDj'></th></span></q></dt></tr></i><div id='jGLDj'><tfoot id='jGLDj'></tfoot><dl id='jGLDj'><fieldset id='jGLDj'></fieldset></dl></div>
      <tfoot id='jGLDj'></tfoot>

      <small id='jGLDj'></small><noframes id='jGLDj'>

        如何构建 Eclipse RCP 应用程序,以便自动更新其功能?

        How do I build an Eclipse RCP app so that its features can be updated automatically?(如何构建 Eclipse RCP 应用程序,以便自动更新其功能?)

        <small id='Dk0ht'></small><noframes id='Dk0ht'>

                • <bdo id='Dk0ht'></bdo><ul id='Dk0ht'></ul>
                  <legend id='Dk0ht'><style id='Dk0ht'><dir id='Dk0ht'><q id='Dk0ht'></q></dir></style></legend>
                  <i id='Dk0ht'><tr id='Dk0ht'><dt id='Dk0ht'><q id='Dk0ht'><span id='Dk0ht'><b id='Dk0ht'><form id='Dk0ht'><ins id='Dk0ht'></ins><ul id='Dk0ht'></ul><sub id='Dk0ht'></sub></form><legend id='Dk0ht'></legend><bdo id='Dk0ht'><pre id='Dk0ht'><center id='Dk0ht'></center></pre></bdo></b><th id='Dk0ht'></th></span></q></dt></tr></i><div id='Dk0ht'><tfoot id='Dk0ht'></tfoot><dl id='Dk0ht'><fieldset id='Dk0ht'></fieldset></dl></div>

                    <tbody id='Dk0ht'></tbody>
                  <tfoot id='Dk0ht'></tfoot>

                  本文介绍了如何构建 Eclipse RCP 应用程序,以便自动更新其功能?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我正在构建一个由多个功能组成的 RCP 应用程序.

                  I am building an RCP application that will be made up of several Features.

                  我的 RCP 应用程序配置为在每次启动时检查更新.我当前的问题是我需要在构建时安装"我的一项功能,以便在自动检查更新期间对其进行更新,而无需强制用户手动安装它.我需要此功能独立于系统中的其他功能进行更新.

                  My RCP application is configured to check for updates each time it starts. My current problem is that I need one of my Features to be 'Installed' at build time so that it will get updated during this automatic check for updates without forcing the user to manually install it. I need this feature to update independently from the other features in the system.

                  所以,回顾一下,我只是在寻找一种很好的自动化方式来在 RCP 应用程序中安装一个功能,这样它就可以独立于其他功能进行更新,并且不需要 RCP 应用程序的用户手动安装.

                  So, to recap, I'm just looking for a nice automated way to have a Feature installed in an RCP app in such a way that it updates independently from other features, and doesn't require the user of the RCP app to install it manually.

                  推荐答案

                  同时,Tycho 明确支持此用例.从 Tycho 0.20.0 开始,您可以让 Tycho 独立于 RCP 安装功能产品.通过这种方式,这些功能可以独立于产品进行更新(甚至卸载).

                  In the meanwhile, Tycho has explicit support for this use case. Starting with Tycho 0.20.0, you can make Tycho install features of an RCP separately from the product. In this way, these features can be updated (or even be uninstalled) independently of the product.

                  要独立安装功能,只需在产品文件中的相应功能标签中添加属性 installMode="root" 即可.示例:

                  To install features independently, just add an attribute installMode="root" to the respective feature tags in the product file. Example:

                  <features>
                     <feature id="org.eclipse.platform"/>
                     <feature id="updatable.feature" installMode="root"/>
                  </features>
                  

                  有关详细信息,请参阅此文档页面.

                  For more information, see this documentation page.

                  这篇关于如何构建 Eclipse RCP 应用程序,以便自动更新其功能?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Cannot load 64-bit SWT libraries on 32-bit JVM ( replacing SWT file )(无法在 32 位 JVM 上加载 64 位 SWT 库(替换 SWT 文件))
                  How can I specify the default JVM arguments for programs I run from eclipse?(如何为从 Eclipse 运行的程序指定默认 JVM 参数?)
                  Class JavaLaunchHelper is implemented in both ... libinstrument.dylib. One of the two will be used. Which one is undefined(JavaLaunchHelper 类在... libinstrument.dylib 中都实现了.将使用两者之一.哪个是未定义的) - IT屋-程序员软件开发技术分享
                  Running Eclipse on Windows 7 JRE and JDK not found(找不到在 Windows 7 JRE 和 JDK 上运行 Eclipse)
                  StringBuilder vs. .concat vs. quot;+quot; Operator relative performance different in eclipse than command line?(StringBuilder vs. .concat vs. “+eclipse中的操作员相对性能与命令行不同?)
                  Is there a maximum number you can set Xmx to when trying to increase jvm memory?(尝试增加 jvm 内存时,您可以将 Xmx 设置为最大数量吗?)
                      <tbody id='Kh73b'></tbody>
                    <i id='Kh73b'><tr id='Kh73b'><dt id='Kh73b'><q id='Kh73b'><span id='Kh73b'><b id='Kh73b'><form id='Kh73b'><ins id='Kh73b'></ins><ul id='Kh73b'></ul><sub id='Kh73b'></sub></form><legend id='Kh73b'></legend><bdo id='Kh73b'><pre id='Kh73b'><center id='Kh73b'></center></pre></bdo></b><th id='Kh73b'></th></span></q></dt></tr></i><div id='Kh73b'><tfoot id='Kh73b'></tfoot><dl id='Kh73b'><fieldset id='Kh73b'></fieldset></dl></div>

                    <legend id='Kh73b'><style id='Kh73b'><dir id='Kh73b'><q id='Kh73b'></q></dir></style></legend>

                      <bdo id='Kh73b'></bdo><ul id='Kh73b'></ul>

                      <small id='Kh73b'></small><noframes id='Kh73b'>

                          <tfoot id='Kh73b'></tfoot>