Submitted by jasonday on Sun, 09/11/2011 - 10:53pm
After reading Having “fun” with JSR-303 Beans Validation and OSGi + Spring DM, I thought I would attempt to bootstrap JSR-303 Beans Validation in Spring in a Sling OSGi container. Unfortunately, a few changes have been made to the Hibernate API since Magnus' articles, so a few updates to his version are required. Additionally, I want to enable JSR-303 Beans Validation in the Sling/Spring MVC environment I previously wrote about. This presented a few additional challenges, so I'll also walk through the steps to enable JSR-303 Beans Validation in a Spring MVC application context running within a Sling OSGi container so that you can use JSR-303 Beans Validation as described in the Spring documentation.
Submitted by jasonday on Fri, 09/02/2011 - 10:27pm
It is sometimes desirable to run Spring MVC within a Sling container. However, since Sling is a web application, you may not be able to utilize the features within Spring Dynamic Modules and drop a WAR file within the container. In this case, you need to create an application which will bootstrap the Spring Web container within the Sling context.
Submitted by jasonday on Thu, 09/01/2011 - 10:42pm
An OSGi version of AspectJ Tools is already available from the Spring Bundle Repository. Unfortunately, some of the exports of that bundle may conflict with your OSGi container, such as Apache Felix. In this case, you may need to re-wrap the bundle with the conflicting exports disabled. Additionally, versions newer than v1.6.6 contain a change that can cause an error when attempting to load certain types of Aspects with Spring annotations in an OSGi environment.
Submitted by jasonday on Sat, 07/30/2011 - 12:23am