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 3.7KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. ---
  2. title: Vaadin OSGi Support
  3. order: 19
  4. layout: page
  5. ---
  6. [[advanced.osgi]]
  7. = Vaadin OSGi Support
  8. IMPORTANT: The OSGi support as described here is currently being developed and only available in the Framework 8.1 prerelease versions, starting from 8.1.0.beta1.
  9. Vaadin applications can be deployed on an OSGi compatible servlet container, or on Liferay 7 as OSGi portlets.
  10. 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.
  11. 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.
  12. 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.
  13. [[advanced.osgi.servlet]]
  14. == Publishing a Servlet With OSGi
  15. 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.
  16. The [interfacename]#@WebServlet# annotation settings will be used to configure the urlPatterns and async parameters.
  17. [source, java]
  18. ----
  19. import org.osgi.service.component.annotations.Component;
  20. ...
  21. @Component(service = VaadinServlet.class)
  22. @WebServlet(urlPatterns = "/*", name = "MyUIServlet", asyncSupported = true)
  23. @VaadinServletConfiguration(ui = MyUI.class, productionMode = false)
  24. public static class MyUIServlet extends VaadinServlet {
  25. }
  26. ----
  27. [[advanced.osgi.resources]]
  28. == Publishing Static Resources With OSGi
  29. 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.
  30. 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.
  31. [source, java]
  32. ----
  33. @Component
  34. public class MyTheme extends ValoTheme implements OsgiVaadinTheme {
  35. public static final String THEME_NAME = "mytheme";
  36. @Override
  37. public String getName() {
  38. return THEME_NAME;
  39. }
  40. }
  41. ----
  42. 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.
  43. [source, java]
  44. ----
  45. VaadinResourceService service = OsgiVaadinResources.getService();
  46. service.publishTheme("mytheme", httpService);
  47. ----
  48. 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.