2012-04-15 77 views
13

我有一个运行在日食virgo OSGi平台上的spring MVC projet。 当我尝试使用<osgi:reference>标签我得到下面的异常导入OSGi服务:Spring无法找到OSGi名称空间处理程序

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] 

这是我的应用程序上下文文件:

<?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> 

最后,在我的MANIFEST.MF文件,我这样做:

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]" 

我在做什么错?

+3

我不明白为什么这个问题被低估了... – 2012-04-18 09:17:14

+0

我也是。没有人给我答复,我仍然没有解决方案:( – 2012-04-18 12:21:04

+0

@HoucemBerrayana,这个问题发布了一年多前,你解决了这个问题吗?如果是这样,你能分享你是如何做到的吗?需要命名空间解析器http://www.springframework.org/schema/osgi? – 2013-09-27 17:22:17

回答

0

我怀疑你需要导入org.springframework.osgi.core,所以请尝试删除该导入。

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

到:

+0

这并不能解决问题。我多次遇到这个问题,并且总是与丢失的罐子有关。但是这次我不明白我做错了什么。 – 2012-04-21 09:26:55

0

尝试从改变

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

错误显示您的OSGi schemaLocation是错误的。

相关问题