无法使用Web应用程序包在OSGi(Karaf)中找到用于XML架构命名空间的Spring NamespaceHandler

时间:2014-11-24 11:06:20

标签: spring-mvc apache-karaf karaf

我正在尝试在karaf中部署Web应用程序包,但是在某种程度上,即使在正确的架构之后也无法找到用于XML架构命名空间的Spring NamespaceHandler。

可能是什么问题?

Karaf version : 3.0.0
Spring version : 3.2.x
Jetty version : 8.x

以下更多详情:

部署时出错:

    org.springframework.beans.factory.parsing.BeanDefinitionParsingException: 
   Configuration problem: Unable to locate Spring NamespaceHandler for XML schema 
  namespace   [http://www.springframework.org/schema/mvc]

上下文类

<context-param>
    <param-name>contextClass</param-name>
    <param-value>org.springframework.osgi.web.context.support.OsgiBundleXmlWebApplicationContext</param-value>
</context-param>

上下文文件:

<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd  
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">

<mvc:resources mapping="/mydcos/**" location="file:/opt/mydocs/css/" />

1 个答案:

答案 0 :(得分:0)

确保您在Karaf中安装了spring-webmvc。 Spring DM有点遗留,但MVC命名空间处理程序的注册方式与其余部分相同。