You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

advanced-osgi.asciidoc 7.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. ---
  2. title: Vaadin OSGi Support
  3. order: 19
  4. layout: page
  5. ---
  6. [[advanced.osgi]]
  7. = Vaadin OSGi Support
  8. Vaadin applications can be deployed on an OSGi compatible servlet container, or on Liferay 7 as OSGi portlets.
  9. An OSGi application typically consists of multiple bundles that can be deployed separately. Multiple versions of each bundle can be present, and the OSGi runtime resolves their dependencies at run-time based on bundle manifests.
  10. To deploy Vaadin applications as OSGi bundles, static resources (including themes and widget sets) must be published using the appropriate APIs to enable using multiple Vaadin versions on the same server.
  11. The application is typically packaged as a JAR file, and needs to have a valid OSGi bundle manifest which can be created e.g. by the `bnd-maven-plugin`. All the dependencies of the application should be available as OSGi bundles.
  12. [[advanced.osgi.servlet.maven]]
  13. == Minimal Vaadin Project For OSGi
  14. Vaadin application for OSGi should be a valid bundle, i.e. it should be packaged as a `.jar` file, and it should have a proper OSGi manifest inside.
  15. The easiest way to convert regular maven-based Vaadin application into a valid OSGi bundle consists of five steps:
  16. * Change packaging type to `jar` in your `pom.xml`:
  17. [source, xml]
  18. ----
  19. <packaging>jar</packaging>
  20. ----
  21. * Change the scope for all vaadin dependencies from default to `provided`, like this:
  22. [source, xml]
  23. ----
  24. <dependency>
  25. <groupId>com.vaadin</groupId>
  26. <artifactId>vaadin-server</artifactId>
  27. <scope>provided</scope>
  28. </dependency>
  29. ----
  30. * Add OSGi-related dependencies to the project
  31. [source, xml]
  32. ----
  33. <groupId>com.vaadin</groupId>
  34. <artifactId>vaadin-osgi-integration</artifactId>
  35. <version>8.1.0.beta1</version>
  36. <scope>provided</scope>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.osgi</groupId>
  40. <artifactId>osgi.core</artifactId>
  41. <version>6.0.0</version>
  42. <scope>provided</scope>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.osgi</groupId>
  46. <artifactId>osgi.annotation</artifactId>
  47. <version>6.0.1</version>
  48. <scope>provided</scope>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.osgi</groupId>
  52. <artifactId>osgi.cmpn</artifactId>
  53. <version>6.0.0</version>
  54. <scope>provided</scope>
  55. </dependency>
  56. ----
  57. * Setup necessary plugins for building the project:
  58. [source, xml]
  59. ----
  60. <build>
  61. <plugins>
  62. <plugin>
  63. <groupId>biz.aQute.bnd</groupId>
  64. <artifactId>bnd-maven-plugin</artifactId>
  65. <version>3.3.0</version>
  66. <executions>
  67. <execution>
  68. <goals>
  69. <goal>bnd-process</goal>
  70. </goals>
  71. </execution>
  72. </executions>
  73. </plugin>
  74. <plugin>
  75. <groupId>org.apache.maven.plugins</groupId>
  76. <artifactId>maven-jar-plugin</artifactId>
  77. <version>3.0.2</version>
  78. <configuration>
  79. <archive>
  80. <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
  81. </archive>
  82. </configuration>
  83. </plugin>
  84. ...
  85. </plugins>
  86. </build>
  87. ----
  88. * Add bundle script (`bnd.bnd`) into the project root folder:
  89. [source, text]
  90. ----
  91. Bundle-Name: ${project.name}
  92. Bundle-Version: ${project.version}
  93. Bundle-SymbolicName: ${project.groupId}.${project.artifactId}
  94. Export-Package: com.example.osgi.myapplication
  95. Import-Package: *
  96. Web-ContentPath: /myapp
  97. ----
  98. [[advanced.osgi.servlet]]
  99. == Publishing a Servlet With OSGi
  100. To deploy the app as a servlet all we need to do is annotate the [classname]#MyUIServlet# class with [literal]#@Component(service = VaadinServlet.class)#. The Vaadin integration will track this registration and use HttpWhiteboard specification to register a servlet with the location of the Vaadin resources properly configured. This means that the user can specify a set of HttpWhiteboard properties in the [interfacename]#@Component# declaration.
  101. The [interfacename]#@WebServlet# annotation settings will be used to configure the urlPatterns and async parameters.
  102. [source, java]
  103. ----
  104. import org.osgi.service.component.annotations.Component;
  105. ...
  106. @Component(service = VaadinServlet.class)
  107. @WebServlet(urlPatterns = "/*", name = "MyUIServlet", asyncSupported = true)
  108. @VaadinServletConfiguration(ui = MyUI.class, productionMode = false)
  109. public static class MyUIServlet extends VaadinServlet {
  110. }
  111. ----
  112. [[advanced.osgi.resources]]
  113. == Publishing Static Resources With OSGi
  114. Vaadin Framework 8.1 and later versions provide two supported ways of publishing static resources for OSGi: by making OSGi services implementing an interface or by explicit calls to a service.
  115. The easiest way to publish a theme or a widgetset is to create a class implementing the interface [interfacename]#OsgiVaadinTheme# or [interfacename]#OsgiVaadinWidgetset# and annotating it with [interfacename]#@Component# to make it an OSGi service. This automatically publishes the theme or the widget set from the bundle at a path that contains the Vaadin Framework version used by the application.
  116. [source, java]
  117. ----
  118. @Component
  119. public class MyTheme extends ValoTheme implements OsgiVaadinTheme {
  120. public static final String THEME_NAME = "mytheme";
  121. @Override
  122. public String getName() {
  123. return THEME_NAME;
  124. }
  125. }
  126. ----
  127. Alternatively, an OSGi bundle activator or an SCR Component [interfacename]#@Activate# method can obtain an instance of [classname]#VaadinResourceService# from [classname]#OsgiVaadinResources# and explicitly call its methods to publish a theme, a widget set or an individual file in the bundle as a static resource at the correct path.
  128. [source, java]
  129. ----
  130. VaadinResourceService service = OsgiVaadinResources.getService();
  131. service.publishTheme("mytheme", httpService);
  132. ----
  133. In addition to these approaches, it is also possible to repackage all the static resources of an application to a single bundle and export the [filename]#/VAADIN# directory. This can be useful e.g. when migrating an old Vaadin OSGi application in an environment that does not support parallel deployments of multiple versions of the application.
  134. [[advanced.osgi.deploy]]
  135. == Deployment to OSGi container.
  136. In order to have your application running under OSGi container, you need to have Vaadin framework bundles deployed, and then the application bundle can be deployed and started.
  137. Here is a list of required Vaadin bundles, in order of loading:
  138. * `jsoup-1.8.3.jar`
  139. * `gentyref-1.2.0.vaadin1.jar`
  140. * `vaadin-shared-8.1.x.jar`
  141. * `vaadin-server-8.1.x.jar-8.1.x.jar`
  142. * `vaadin-osgi-integration-8.1.x.jar`
  143. * `vaadin-client-compiled-8.1.x.jar` (not required, if your project uses its own widgetset)
  144. * `vaadin-themes-8.1.x.jar`
  145. And here is a complete script to have Vaadin application up and running using link:https://karaf.apache.org/[Apache Karaf 4.0.8] console:
  146. [source]
  147. ----
  148. feature:install http
  149. feature:install http-whiteboard
  150. bundle:install -s mvn:org.jsoup/jsoup/1.8.3
  151. bundle:install -s mvn:com.vaadin.external/gentyref/1.2.0.vaadin1
  152. bundle:install -s mvn:com.vaadin/vaadin-shared/8.1.0
  153. bundle:install -s mvn:com.vaadin/vaadin-server/8.1.0
  154. bundle:install -s mvn:com.vaadin/vaadin-osgi-integration/8.1.0
  155. bundle:install -s mvn:com.vaadin/vaadin-client-compiled/8.1.0
  156. bundle:install -s mvn:com.vaadin/vaadin-themes/8.1.0
  157. bundle:install -s file:path-to-the-application.jar
  158. ----