Solved
My custom service is not visible in "Services", "Components" tabs.
Hey. My problem is:
I've deployed my service successfully. "Services" bundle is active, I can call methods from my deployed service without any problems, but I cant see it in "Services" and "Components" tabs in my Felix OSGi Console. What should I do to make it visible in the "Service", "Components" tabs?
The code of my service.
@Component(immediate = true)
@Service(value = GoodbyeWorldService.class)
public class GoodbyeWorldService {
@Reference
protected Scheduler scheduler;
private final static Logger LOGGER = LoggerFactory.getLogger( GoodbyeWorldService.class);
public void get() {
LOGGER.info("Scheduler is " + this.scheduler);
}
}