From e2725e53d85eb9b7857ec40b0a83d5395f1fd011 Mon Sep 17 00:00:00 2001 From: Mark Fisher Date: Fri, 17 Jul 2009 16:52:25 +0000 Subject: [PATCH] added comments about the OSGi samples in the README --- spring-integration-samples/README.txt | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/spring-integration-samples/README.txt b/spring-integration-samples/README.txt index a653b8964c..4a5238ae62 100644 --- a/spring-integration-samples/README.txt +++ b/spring-integration-samples/README.txt @@ -55,4 +55,21 @@ Open any project and you will see the 'lib' directory with all of the JARs required to run the demos. Now you can configure your IDE to point to those directories. +=============================================================================== +OSGi Samples +------------ + +The Hello World and Cafe samples listed above are both OSGi-enabled. Instead +of running those as standalone applications via their main() methods, you can +deploy them to an OSGi runtime and rely on the included BundleActivators. + +This release also includes two new samples that are dedicated to showcasing +capabilities of the Spring Integration and OSGi combination. They form a +producer/consumer pair: osgi-inbound and osgi-outbound. Unlike the others, +they are not Maven-enabled, but instead they are ready to run directly within +SpringSource dm Server, and with the SpringSource Tool Suite support, this +requires only an import and adding to the Server instance. A comprehensive +overview of those OSGi samples is included in the "Samples" Appendix of the +Spring Integration Reference Manual. + Happy integration :-)