1

我正在尝试使用 iPojo 注释在 Eclipse 中进行组件声明。问题是当它生成 XML 和修改的类时,bnd-ipojo-plugin 在插件类路径中找不到注释。

我在 Eclipse 中遇到这样的错误:

During generation of a component on class org.osgi.example.Application, exception java.lang.ClassNotFoundException: org.apache.felix.ipojo.annotations.Bind

我已修改 .bnd 文件以包含“-plugins”属性:

-plugin: org.apache.felix.ipojo.bnd.PojoizationPlugin;use-local-schemas=true;path:="${workspace}/cnf/plugins/org.apache.felix.ipojo-1.10.1.jar;${workspace}/cnf/plugins/org.apache.felix.ipojo.annotations-1.10.1.jar;${workspace}/cnf/plugins/bnd-ipojo-plugin-1.10.1.jar;${workspace}/cnf/plugins/org.apache.felix.ipojo.manipulator-1.10.1.jar"

我的 Eclipse 项目在 BuildPath 中也有所有 iPojo jar。有没有人有什么建议?或者有没有更好的方法将 iPojo 集成到 Eclipse 中?

编辑 1

我已经完全重建了我的工作区并将-pluginand-pluginpath变量移到了 build.bnd 文件中。

它现在看起来像这样:

-pluginpath: ${plugindir}/biz.aQute.repository/biz.aQute.repository-2.1.0.jar,\
    ${plugindir}/bnd-ipojo-plugin/bnd-ipojo-plugin-1.10.1.jar, \
    ${plugindir}/org.apache.felix.ipojo/org.apache.felix.ipojo-1.10.1.jar, \
    ${plugindir}/org.apache.felix.ipojo.annotations/org.apache.felix.ipojo.annotations-1.10.1.jar, \
    ${plugindir}/org.apache.felix.ipojo.manipulator/org.apache.felix.ipojo.manipulator-1.10.1.jar

-plugin: aQute.bnd.deployer.repository.LocalIndexedRepo;name=Release;local=${workspace}/cnf/releaserepo;pretty=true,\
    aQute.bnd.deployer.repository.LocalIndexedRepo;name=Local;local=${workspace}/cnf/localrepo;pretty=true,\
    aQute.bnd.deployer.repository.FixedIndexedRepo;name=Bndtools Hub;locations=https://github.com/bndtools/bundle-hub/raw/master/index.xml.gz,\
    aQute.lib.deployer.FileRepo;name=Build;location=${workspace}/cnf/buildrepo,\
    aQute.lib.deployer.FileRepo;readonly=true;name=iPojo Repo;location=${plugindir}, \
    org.apache.felix.ipojo.bnd.PojoizationPlugin;use-local-schemas=true

现在所有的错误都消失了,它的构建没有失败。但是,仍然没有生成 XML 文件。除了更改 build.bnd 文件之外,还有其他步骤吗?

4

2 回答 2

0

我遇到了同样的问题,并通过将 bnd-ipojo-plugin 构建为具有所有依赖项的胖 jar 来使其工作。我从这里得到了这个想法:https ://groups.google.com/forum/#!topic/bndtools-users/0IqYbXOxn3Q

我把源代码添加到 pom.xml 中:

...
<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-assembly-plugin</artifactId>
    <configuration>
        <descriptorRefs>
            <descriptorRef>jar-with-dependencies</descriptorRef>
        </descriptorRefs>
    </configuration>
    <executions>
        <execution>
            <id>assemble-all</id>
            <phase>package</phase>
            <goals>
                <goal>single</goal>
            </goals>
        </execution>
    </executions>
</plugin>
...

然后我将生成的 jar 作为插件添加到 build.bnd,如下所示:

-plugin: org.apache.felix.ipojo.bnd.PojoizationPlugin;path:="${workspace}/cnf/plugins/bnd-ipojo-plugin-1.12.1-jar-with-dependencies.jar";use-local-schemas=true

这样它就可以正常工作了。

于 2019-01-10T09:55:21.437 回答
-1

我通过 iPojo 切换到 BndTools SCR 注释。我喜欢 iPojo 注释的表现力,但我发现 SCR 注释同样令人愉快。由于它们内置在 BndTools 中,因此它们可以按预期工作。尽管规范(第 187 页)证明在确保我正确使用它们(即属性与属性)方面非常有用。

于 2013-09-10T03:13:37.630 回答