0

最近、Web アプリを Spring 3.2.3 に移行しました。最近、静的ページの問題を解決しようとしたときに、mvc:resources 名前空間に遭遇しました。しかし、アプリケーションの context.xml ファイルでエラーが発生しています。いろいろ調べましたが解決できませんでした。助けてください。My Eclipse 8.6 と Tomcat 6 を使用しています。

control+space が mvc:resources.but を示唆していることに注意してください

明示的なバージョンでもスキーマを使用しようとしました。関連するコードを貼り付けました

 <?xml version="1.0" encoding="UTF-8"?>
    <beans xmlns="http://www.springframework.org/schema/beans"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
        xmlns:p="http://www.springframework.org/schema/p"
        xmlns:context="http://www.springframework.org/schema/context"
        xmlns:mvc="http://www.springframework.org/schema/mvc" 
        xmlns:aop="http://www.springframework.org/schema/aop"
        xmlns:tx="http://www.springframework.org/schema/tx"

        xsi:schemaLocation="
                http://www.springframework.org/schema/beans 
                http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
                http://www.springframework.org/schema/context 
                http://www.springframework.org/schema/context/spring-context-3.2.xsd
                http://www.springframework.org/schema/mvc
                http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd
                http://www.springframework.org/schema/aop 
                http://www.springframework.org/schema/aop/spring-aop-3.2.xsd
                http://www.springframework.org/schema/tx 
                http://www.springframework.org/schema/tx/spring-tx-3.2.xsd">

    <mvc:resources location="" mapping=""/>

</beans>
4

1 に答える 1

0

クラスパス上の jar を修正する必要があることを確認し、spring-webmvc.jar がクラスパス上にあることを確認してください。Maven (または Gradle) を使用する場合は、クラスパスにその jar の単一 (かつ正しい) バージョンがあることを確認してください。複数のバージョンが競合する可能性があります。

于 2013-08-26T05:45:25.537 に答える