태그 : OSGi 요약보기전체보기목록닫기

1

OSGi 서비스 개발 패턴의 이해

먼저 크라켄 Cron 서비스를 이용하는 예를 하나 생각해봅시다..주기적으로 특정한 작업을 수행하고 싶을 때 아래와 같이 구현할 수 있습니다. package org.krakenapps.example; import org.apache.felix.ipojo.annotations.Component;import org.apache.felix.ipojo.ann...

Automatic OSGi service provisioning

OSGi provides start level but it's not sufficient to control service configuration and composition. If you want fine-grained service control, you can use org.osgi.util.tracker.ServiceTracker. Ext...
1