gpt4 book ai didi

java - OSGi DS : xml file is not generated

转载 作者:行者123 更新时间:2023-12-01 11:20:11 25 4
gpt4 key购买 nike

我有以下服务类别:

@Component(immediate = true)
@Service
public class Myclass implements MyInterface
{
@Override
public String doIt()
{
return "This is default bean";
}
}

在 pom 文件中我有:

<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.scr.annotations</artifactId>
<version>1.9.6</version>
<scope>provided</scope>
</dependency>
...
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>2.4.0</version>
<extensions>true</extensions>
<configuration>
<instructions>
<_include>
-target/classes/META-INF/beans.bnd
</_include>
<Export-Package></Export-Package>
<Private-Package>com.company.temp.*</Private-Package>
</instructions>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-scr-plugin</artifactId>
<version>1.21.0</version>
<executions>
<execution>
<id>generate-scr-scrdescriptor</id>
<goals>
<goal>scr</goal>
</goals>
</execution>
</executions>
</plugin>
...
<plugins>
</build>

问题是未生成 DS 的 xml 文件。此外, list 文件中没有 Service-Component 行。我的错误在哪里(PS java8)?

最佳答案

如果您计划使用标准 DS 注释(而不是 felix 注释)。然后只需使用下面的配置即可。

<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>2.5.4</version>
<extensions>true</extensions>
<configuration>
<instructions>
<_dsannotations>*</_dsannotations>
</instructions>
</configuration>
</plugin>

我还有一个DS tutorial如果您需要完整的示例。

关于java - OSGi DS : xml file is not generated,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31340093/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com