1

Web Application Bundle を karaf にデプロイしようとしていますが、どういうわけか適切なスキーマの後でも 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/" />

4

1 に答える 1

0

Karaf に spring-webmvc がインストールされていることを確認してください。Spring DM はちょっとレガシーですが、MVC 名前空間ハンドラーは残りの部分と同じ方法で登録されます。

于 2014-12-02T14:32:47.053 に答える