2016-11-01 15 views
1

エラー*要素タイプ "beans"に関連付けられた属性 "xmnls:mvc"の接頭辞 "xmnls"バウンド。 事前にme..Thanksを助けてください。*要素タイプ "beans"に関連付けられた属性 "xmnls:mvc"のプレフィックス "xmnls"はバインドされていません

This is my Spring-Dispatcher-Servlet.xml 

     <beans xmlns="http://www.springframework.org/schema/beans" 
      xmlns:context="http://www.springframework.org/schema/context" 
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
      xmnls:mvc="http://www.springframework.org/schema/mvc" 
      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/mvc 
      http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd"> 


      <context:component-scan base-package="com.gontu.Annotation.Helloexample"></context:component-scan> 
      <mvc:annotation-driven/> 

      <bean id = "viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver"> 
      <property name="prefix"> 
      <value>/WEB-INF/</value> 
      </property> 
       <property name="suffix"> 
      <value>.jsp</value> 
      </property> 
      </bean> 
      </beans> 

答えて

1

変更

 xmnls:mvc="http://www.springframework.org/schema/mvc" 
     ^^ 

 xmlns:mvc="http://www.springframework.org/schema/mvc" 
     ^^ 
関連する問題