InfoQ

InfoQ

News

My Bookmarks

Login or Register to enable bookmarks for unlimited time.

The content has been bookmarked!

There was an error bookmarking this content! Please retry.

Spring - OSGi Integration Milestone 1 Released

Posted by James Kao on Apr 16, 2007

Sections
Development,
Enterprise Architecture
Topics
Java ,
Enterprise Architecture
Tags
Spring ,
OSGi
Milestone 1 of Spring - OSGi was released and provides support for deploying Spring applications in an OSGi environment. OSGi's focus on dynamic modules presented some unique challenges to the Spring integration team:
One of the biggest challenges when adopting OSGi is dealing with its dynamic nature. Services (which are are simple object instances) come and go and your application has to deal with that. The solution is not straight forward, depends from case to case and requires an application-wide scope just like exception handling and transaction do. Classloading restrictions, enforced by the modularity mentioned, combined with AOP can cause a lot of grief and force the developer to create hacks, thus throwing out the window the benefits OSGi provides. These are just a few examples of the things we are addressing in Spring-OSGi which in the end, should allow a smooth adoption path to OSGi.
Some of the key features in this release are:

OSGi Application Context
Whereas OSGi is based on bundles which are independent modules, Spring-OSGi adds an application-wide context that gives developers access to the OSGi context that hosts the application.

Resource Abstraction
OSGi adds an abstraction layer to the classpath that utilizes a URL scheme that can vary from implementation to implementation. Spring-OSGi encapsulates this scheme and provides a portable lookup interface.

Dynamic Service Support
Through XML configuration, turning any arbitrary object into an OSGi service is significantly streamlined.

Integration Testing
Spring-OSGi adds a testing infrastructure built on top of JUnit that makes running tests from an IDE that execute inside of the container much easier.

Hal Hildebrand noted that the JUnit support was particularly noteworthy:
Basically, the issue with any in-container testing is getting your unit test to run inside the container. This requires setting up and starting the container, of course, deploying your test code (in the OSGi container case, the bundles you need for your test scenario) and then there's the JUnit test itself. Now you have to remotely trigger the running of the test and somehow get the results back from the test run.

Costin's framework does all this with a very slick framework which sets up and runs the OSGi container in the same process, wrapping your JUnit test class within an automagically generated OSGi bundle. The end result is that you now have in-container testing which can be run as any JUnit test is run - from Ant or from Maven, or from within your favorite IDE. As I said, this is very cool and you have to actually play with it to believe it. There's nothing even approaching it for any other container.

No comments

Watch Thread Reply

Educational Content

New-age Transactional Systems - Not Your Grandpa's OLTP

John Hugg discusses high volume transaction processing applications with high and low frequency profiles, and how VoltDB can be used for that purpose.

Cool Code

Kevlin Henney examines code samples to see what can be learned from them starting from the premise that one won’t write great code unless he knows how to read it.

Collaboration: At the Extremities of Extreme

Jason Ayers share the observations he made watching a team of developers collaborating in real time on the same code base, pushing XP, pair programming and continuous integration to their extremes.

Yesod Web Framework

Michael Snoyman presents Yesod, a web framework written in Haskell and containing a web server, templating, ORM, libraries (templating, gravatar, etc.).

Transactions without Transactions

Richard Kreuter and Kyle Banker on how to avoid classical RDBMS transactional systems by using compensation mechanisms, transactional messaging or transactional procedures.

Attila Szegedi on JVM and GC Performance Tuning at Twitter

Attila Szegedi talks about performance tuning Java and Scala programs at Twitter: how to approach GC problems, the importance of asynchronous I/O, when to use MySQL/Cassandra/Redis, and much more.

10 tips on how to prevent business value risk

One category of risk that project teams need to ensure they address is business value failure – delivering a product that fails to provide value for the business investor.

Interview: Software Systems Architecture: Working With Stakeholders Using Viewpoints and Perspectives

InfoQ spoke to the authors of Software Systems Architecture on a couple of new topics, the System Context viewpoint and Agile, which have been added to the second edition.