Я оставлю это экспертам, чтобы рассказать, насколько хороша OSGi . Среди множества преимуществ я мог бы рассказать вам, почему мы выбрали OSGi для домашнего проекта — модульность, избегая ада JAR и динамических обновлений (эй, а почему бы и нет?)
Мы выбрали Apache Felix (реализация спецификации платформы OSGi) и Apache Karaf (как бы это выразиться — что-то вроде сервера приложений для приложений OSGi). Помимо работы в качестве контейнера OSGi, Karaf обладает множеством замечательных функций (каламбур). И нам нравится идея управления несколькими экземплярами Karaf, управляемыми через Zookeeper.
Хватит говорить, давайте посмотрим код. Это элементарное руководство по запуску базовой службы отдыха OSGi CXF-JAX на Karaf. Если задан параметр REST (имя), служба просто вернется Hello, (name). Это оно !! Весь проект можно скачать здесь
Обратите внимание, что этот проект не имеет моделей домена и поэтому имеет только два проекта — один для REST (Контроллер) и другой для фактической реализации сервиса. Структура проекта выглядит следующим образом:
Шаг 1 — Внедрение сервиса
В этом проекте есть только две «полезные» вещи — HelloService интерфейс и HelloServiceImpl класс.
Глупо, верно?
Шаг 2 — проект REST
Подобно проекту Service, в этом проекте также есть две примечательные вещи — HelloRestService интерфейс и HelloRestServiceImpl класс.
HelloRestService
HelloRestServiceImpl
The HelloRestServiceImpl ничего не делает, кроме как вызывает то, HelloService что вводится через Blueprint Dependency Injection . Эй, инъекция выглядит очень знакомой Spring DI? В точку !! Spring DI находится под сильным влиянием Spring DI. На самом деле, оригинальная работа над проектом выполняется весной .
Шаг 3 — Инъекции
XML (с любым именем) в папке OSGI-INF / blueprint будет выбран для сканирования DI.
serviceimpl.xml
Делает две вещи в одном теге:
Регистрирует HelloService в реестре сервисов для поиска
Говорит, что его реализация HelloServiceImpl
На самом деле, вы можете сделать это в два отдельных шага. Подробнее об этом здесь .
rest.xml
1) cxf-bus это конфигурация шины для CXF. Это как менеджер для всех сервисов CXF. Насколько я знаю, наиболее распространенное использование — это настройка пользовательских перехватчиков (для аудита, манипулирования запросами / ответами, манипулирования заголовками и т. Д.)
2) the jaxrs:server initiates a server which would start listening to the URLs that we mapped for. Of course, we would want to map the handlers for the URLs and those go under the serviceBeans.
3) The third note in the XML is the just the restServiceImpl configuration and the injection of the helloService as a property inside the HelloRestServiceImpl
4) The reference tag will lookup the service registry for a bean with the same id.
Step 4 — KAR — Karaf Archive (Optional but easier this way)
Technically, you could just start throwing the bundles generated through the Maven into to the deploy directory of karaf. However, as the project goes big and your dependencies are becoming many, it is advisable to use the .kar archive. Picture .kar as your .war or .ear bundle. A .kar archive, internally, looks something like this :
Building .kar
Building the .kar is composed of two steps :
Step 1
feature.xml
Similar to your web descriptor or application descriptor, we have the features descriptor in Karaf to represent the entire repository that we are bundling together to compose our application.
In our case, we don’t have any external .jar dependencies except for the cxf and the http service for which we are using the in-built features available inside karaf.
Step 2
Maven plugin configuration to create .kar, which indicates where your feature.xml is located (Note that this file is located inside your karaf project)
Wraps
Notice the wrap protocol in front of the mvn protocol in few bundles as in
Not all Jars are OSGi ready but they would obviously be used as a dependency in our project. In those cases, Karaf notices the wrapprotocol and bundles the JAR into an OSGi bundle. In case of doubt, just drop off the wrap and Karaf would complain that the jar is not OSGi compatible. (Alternatively, you could open up each of the dependant jars and check their manifest files)
Changing Log Levels
For all our development environment, we would want to increase our log level to get more feedback from Karaf. This could be achieved by modifying the org.ops4j.pax.logging.cfg file located in your <karaf-installation-directory>/etc
Step 5 — Other Maven configuration
Not technically a step because we would have covered this from the beginning anyway. And nothing fancy here.
Parent pom.xml
Has the rest of the sub-modules configured.
The various library dependencies configured
Rest and ServiceImpl pom.xml
The other poms.xmls aren’t interesting
They just affiliate themselves to the parent pom with the parent tag as in
Step 6 — Bring up Karaf
My Karaf installation is located at : /Users/Gabriel/apps/apache-karaf-2.3.2
Start Karaf :
<installation-dir>/bin/./karaf
Installing CXF and HTTP services
features:chooseurl cxf 2.7.5
features:install http cxf
Checking whether your bundle is installed and your service running
osgi:list
dxf:list-endpoints
Stop Karaf
Ctrl +D (Please note that Ctrl +C closes the connection abruptly instead of stopping Karaf)
In case of accidental Ctrl+C and if Karaf isn’t starting properly, do a