Skip to main content

Installing Spring Dynamic Module 2.0 on Apache Felix 3 in a hurry

As I mentioned in my posts on Web-plug, I did not consider OSGi or Spring DM at that time because of learning curve and lack of time. But web-plug also has its own set of limitations. Versioning is a big issue for example. I did not try to extend the classloader of Tomcat for this. But off late OSGi and Spring DM has caught my attention again, as I have some time to focus on something new. Also I find that some really good and highly detailed books are out there in the market.So documentation is now reaching the state where it should be for a new technology and framework to be easily and widely acceptable.

Now I picked up – Spring Dynamic Module in Action (Manning, 2010). Its a wonderful book as most of them that I have read in Manning’s in Action series. This is a must read book. Please buy it and do not dowload a pirated e-book. The authors and publications take lot of pain in producing a good book. The examples in this book are based on Equinox OSGi container. I thought of using them on Apache Felix. So the first step is installing the OSGi container and then the framework.

Download and Install Apache Felix 3.0.9 from the link below:

http://mirror.atlanticmetro.net/apache//felix/org.apache.felix.main.distribution-3.0.9.zip

Unzip the zip file in a folder named felix-framework-3.0.8. e.g – C:\felix-framework-3.0.8

image

Now create a run.cmd file and save it in the felix-framework-3.0.8 folder using your favourite text editor.The file contains the instructions to launch the Felix framework as shown below:

java -jar bin/felix.jar

Once the run.cmd file is ready, we are all set to launch the framework. So, launch the command prompt and type run. The gogo console is shown below.

image
Download and unzip Spring DM

Note – Spring DM has now moved to Eclipse Foundation as Gemini Blueprint project. But its still in incubation stage. So we will download and use Spring DM 2.0.0.M1 from the link below:

http://s3.amazonaws.com/dist.springframework.org/milestone/OSGI/spring-osgi-2.0.0.M1-with-dependencies.zip

Just unzip the distribution and copy the bundles from dist and lib folders. The list is shown in figure below. The four selected bundles are core framework bundles. The rest are for Spring DM.

image

Just copy the files to the bundle folder (in this case - C:\felix-framework-3.0.8\bundle).Now once again fire the command run.cmd and you will the gogo console now spits some log4j warning.

image

The problem is well documented in the book. I will try to create a fragment in the next post to solve this on Apache Felix.

Comments

Popular posts from this blog

Breaking down the CRM monolith

In my previous posts, I have shared some theory regarding microservices. But it's time to start some implementation. I love to write code and see and feel things working. So I will start a series to refactor a monolithic CRM system and transform it into microservices based flexible software. Big ball of mud. Customer Relationship Management(CRM) is that giant software which existed since time immemorial and is used by all companies in some form or shape. Big enterprises will buy CRM software (also known as packages) from top CRM vendors like Oracle, SAP, Salesforce etc and then employ an army of consultants to try and implement it. Most of the classic CRM systems in the market today, even if deployed on the cloud are the big monolithic ball of mud. They are the gigantic piece of software with the huge feature set. Most often those requirements are surplus to the requirement or they will not fit into the processes of the company. So the company has to hire these certified consu...

Part 3 - Integrating Tiles, Thymeleaf and Spring MVC 3

In this post I will demonstrate how to integrate Apache Tiles with Thymeleaf. This is very simple. The first step is to include the tiles and thymeleaf-tiles extension dependencies. I will include them in the pom.xml. Note we wil lbe using Tiles 2.2.2 Listing 1 - parent/pom.xml --- thymeleaf-tiles and tiles dependencies <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> <!-- Tiles --> <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> <dependency> <groupId>org.apache.tiles</groupId> <artifactId>tiles-core</artifactId> <version>${tiles.version}</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.tiles</groupId> <artifactId>tiles-template</artifactId> <version>${tiles.version}</version> <scope>compile</s...

CKEDITOR 3.x - Simplest Ajax Submit Plugin

  I have assumed that you have downloaded and got started with CKEDITOR. Step 1 – The html file is shown below: <html> <head> <title>Writer</title> <meta content="text/html; charset=utf-8" http-equiv="content-type" /> <script type="text/javascript" src="ckeditor/ckeditor.js"></script> <script type="text/javascript" src="js/jquery-1.4.2.min.js"></script> <style> .cke_contents { height: 400px !important; } </style> </head> <body> <form action="sample_posteddata.php" method="post"> <textarea id="editor" > </textarea> <script type="text/javascript"> //<![CDATA[ CKEDITOR.replace( 'editor', { fullPage : true, uiColor : '#9AB8F3', toolbar : 'MyToolbar' }); //]]> </script> </form> </body> </html> Note that the jquery js...