1. ホーム
  2. spring

[解決済み] mvc:annotation-driven はバインドされていません。

2022-02-12 04:11:16

質問

NetBeansで、あるSpring Web 3プロジェクトを実行すると、このエラーが発生します。

org.xml.sax.SAXParseException; lineNumber: 11; columnNumber: 30; The のプレフィックス "mvc"。 "mvc:annotation-driven" がバインドされていません。

以下は dispatcher-servlet.xml :

<?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:aop="http://www.springframework.org/schema/aop"
       xmlns:tx="http://www.springframework.org/schema/tx"
       xmlns:mvc="http://www.springframework.org/schema/mvc"
       xmlns:context="http://www.springframework.org/schema/context"
       xsi:schemaLocation="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/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
       http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
       http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd">

    <mvc:annotation-driven />
    <context:component-scan base-package="net.myproject.controllers"/>

    <bean id="viewResolver"
          class="org.springframework.web.servlet.view.InternalResourceViewResolver"
          p:prefix="/WEB-INF/jsp/"
          p:suffix=".jsp" />

</beans>

適切な名前空間宣言をしたつもりですが、明らかにまだ何かを見落としているようです。なぜこのようなエラーが発生するのでしょうか?

どうすればいいですか?

そのように動作するはずで、私の場合はうまくいきました。問題は、あなたのIDE/xmlエディタにあるかもしれません。xmlエラーを無視して、アプリケーションを実行してみてください。