最近、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>