从批处理文件更新 osgi 包
(我使用 glassfish 3.1 和 felix osgi) 我需要编写一个批处理脚本来更新我的 OSGI 包之一。
最基本的想法是从 autodeploy 文件夹中移动捆绑 jar,并在几秒钟后返回它。有没有一种“更干净”的方法来做到这一点?我可以轻松地通过批处理文件在 felix telnet 中运行命令吗?
谢谢
(I use glassfish 3.1 with felix osgi)
I need to write a batch script that updates one of my OSGI bundles.
The most basic idea is to move bundle jar from autodeploy folder, and return it after a few seconds. Is there a "cleaner" way to do it? Can I easily run commands in felix telnet from a batch file?
thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您还可以使用 BundleContext.installBundle 方法
http://www.osgi .org/javadoc/r4v43/org/osgi/framework/BundleContext.html#installBundle(java.lang.String, java.io.InputStream)
you can also use BundleContext.installBundle method
http://www.osgi.org/javadoc/r4v43/org/osgi/framework/BundleContext.html#installBundle(java.lang.String, java.io.InputStream)