Я использую комбинацию R6 OSGi аннотаций из OSGi Alliance, мавена и Apache ФЕЛИКС Maven-Scr-плагин.Услуги, не перечисленные в Karaf, что может быть причиной?
После написания простой пучок, я не вижу каких-либо услуг внутри него (с помощью Karaf webconsole или услуг: список)
Те же работы с низким API уровня через BundleContext, где я вручную зарегистрировать услугу.
Насколько я понимаю maven-scr-plugin генерирует для меня манифест и компоненты XML-файлов во время выполнения.
В приведенном ниже коде я бы ожидал, что сервис SimpleMathI будет зарегистрирован в Registry Registry Registry: Пропустил ли я что-нибудь?
package test;
//notice i don't use apache.felix, since:
//"Starting with the R6 release of the OSGi Declarative Services and Metatype specification, the official annotations support the same
//features as the Apache Felix SCR annotations in a more elegant manner and even provide additional functionality."
import org.osgi.framework.BundleContext;
import org.osgi.service.component.ComponentContext;
import org.osgi.service.component.annotations.Activate;
import org.osgi.service.component.annotations.Component;
import org.osgi.service.component.annotations.Deactivate;
@Component
public class TestClass implements SimpleMathI {
public TestClass() {
System.out.println("contructing TestClass");
}
@Activate
protected void activate(ComponentContext c, BundleContext b) {
System.out.println("activate testClass");
}
@Deactivate
protected void deactivate() {
System.out.println("de-activate testClass");
}
public void doSimpleAdd(int x, int y) {
System.out.println("Result(TestClass): " + (x + y));
}
public void doSimpleSubstract(int x, int y) {
System.out.println("Result(TestClass): " + (x - y));
}
}
вот мой ПОМ файл:
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com</groupId>
<artifactId>DStestDS</artifactId>
<version>0.0.5</version>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-scr-plugin</artifactId>
<version>1.20.0</version>
<executions>
<execution>
<id>generate-scr-scrdescriptor</id>
<goals>
<goal>scr</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<version>4.3.0</version>
</dependency>
<!-- official R6 osgi annotations -->
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.service.component.annotations</artifactId>
<version>1.3.0</version>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<version>5.0.0</version>
</dependency>
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.scr.annotations</artifactId>
<version>1.9.6</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>
Спасибо собрат за ответ. – neodix
Как вы предположили, я выполнил функцию: install scr и перезапустил Karaf.Не было сообщений, и после перезапуска ничего не изменилось. Я также импортировал maven-bundle-plugin и удалил maven-scr-plugin (на самом деле я использовал последний, потому что мне нужна автоматическая генерация дескрипторов), но все равно никаких изменений. – neodix
следить за вопросом: мне также нужно добавить код, приведенный ниже в Maven-расслоение-плагин ?: '<конфигурация> <инструкции> <<- - Включить обработку компонентов аннотаций OSGI DS!> _dsannotations> * _ dsannotations> <_metatypeannotations> * _ metatypeannotations> инструкции> конфигурация> ' – neodix