SpringMVC啟動報錯發現了以元素 'property' 開頭的無效內容

落地僧發表於2016-01-18
SpringMVC啟動報錯:
嚴重: StandardWrapper.Throwable
org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException: Line 81 in XML document from class path resource [conf/spring-mvc.xml] is invalid; nested exception is org.xml.sax.SAXParseException; lineNumber: 81; columnNumber: 88; cvc-complex-type.2.4.a: 發現了以元素 'property' 開頭的無效內容。應以 '{"http://www.springframework.org/schema/beans":import, "http://www.springframework.org/schema/beans":alias, "http://www.springframework.org/schema/beans":bean, WC[##other:"http://www.springframework.org/schema/beans"], "http://www.springframework.org/schema/beans":beans}' 之一開頭。




原因配置時,沒引入beans:
  <!-- 如果使用jstl的話,配置下面的屬性 -->
    <property name="viewClass" value="org.springframework.web.servlet.view.JstlView" /> 
解決:百度引入路徑 引入即可

相關文章