18

I have a spring MVC projet that runs on eclipse virgo OSGi platform. When I attempt to import an OSGi service using <osgi:reference> tag I get the following exception :

Servlet /Web threw load() exception org.springframework.beans.factory.parsing.BeanDefinitionParsingException: Configuration problem: Unable to locate Spring NamespaceHandler for XML schema namespace [http://www.springframework.org/schema/osgi]

This is my application context file :

<?xml version="1.0" encoding="UTF-8"?>
<beans:beans xmlns="http://www.springframework.org/schema/mvc"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:beans="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:osgi="http://www.springframework.org/schema/osgi"
xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
    http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
    http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd
    http://www.springframework.org/schema/osgi http://www.springframework.org/schema/osgi/spring-osgi.xsd">


<annotation-driven />


<resources mapping="/resources/**" location="/resources/" />


<beans:bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
    <beans:property name="prefix" value="/WEB-INF/views/" />
    <beans:property name="suffix" value=".jsp" />
</beans:bean>

<context:component-scan base-package="com.apptivit.web" />

<osgi:reference id="entityService" interface="com.apptivit.db.service.AbstractEntityService"/>  
</beans:beans>

And finally in my MANIFEST.MF file I'm doing this :

Manifest-Version: 1.0
Export-Package: com.apptivit.web;uses:="org.springframework.stereotype
 ,org.springframework.ui,org.springframework.web.bind.annotation"
Tool: Bundlor 1.0.0.RELEASE
Import-Package: com.apptivit.db.service,
 org.apache.log4j,
 org.slf4j,
 org.springframework.context;version="[3.0.5.RELEASE,3.0.5.RELEASE]",
 org.springframework.stereotype,
 org.springframework.ui,
 org.springframework.web.bind.annotation,
 org.springframework.web.context,
 org.springframework.web.servlet,
 org.springframework.web.servlet.view
Bundle-SymbolicName: webs
Bundle-Version: 0.0.1
Bundle-Name: WebSample
Bundle-Vendor: ApptivIT
Import-Bundle: org.springframework.osgi.core;version="[1.2.1,1.2.1]",
 org.springframework.beans;version="[3.0.5.RELEASE,3.0.5.RELEASE]",
 org.springframework.core;version="[3.0.5.RELEASE,3.0.5.RELEASE]"

What am I doing wrong ???

Houcem Berrayana
  • 3,052
  • 22
  • 40

3 Answers3

1

Try to change it from:

xsi:schemaLocation=
http://www.springframework.org/schema/osgi/spring-osgi.xsd"

to:

xsi:schemaLocation=
http://www.springframework.org/schema/osgi/spring-osgi-1.2.xsd

The error shows your osgi schemaLocation is wrong.

Baum mit Augen
  • 49,044
  • 25
  • 144
  • 182
astrologer
  • 11
  • 1
0

I doubt that you need to import org.springframework.osgi.core, so try removing that import.

Vishal Yadav
  • 3,642
  • 3
  • 25
  • 42
glyn
  • 1,180
  • 8
  • 19
  • That doesn't solve the problem. I have encountered this problem many times and it was always related to missing jars. But this time I don't understand what i'm doing wrong. – Houcem Berrayana Apr 21 '12 at 09:26
0

If you are using maven you need to add the dependency

<dependency>
    <groupId>org.springframework.osgi</groupId>
    <artifactId>spring-osgi-core</artifactId>
    <version>1.2.1</version>
</dependency>

Since you are using the version OSGi jar version 1.2.1 the schema path in schema location needs to have changed like

http://www.springframework.org/schema/osgi

http://www.springframework.org/schema/osgi/spring-osgi-1.2.xsd

ram12393
  • 1,284
  • 3
  • 14
  • 29
arunsrajan
  • 46
  • 2