前言中不允许有内容 异常

org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException: Line 1 in XML document from class path resource [] is invalid; nested exception is org.xml.sax.SAXParseException; lineNumber: 1; columnNumber: 1; 前言中不允许有内容。

提示这个异常像是xml配置文件有问题
最后找到了是web.xml文件的DispatchServlet绑定spring配置文件的路径没有指定

    <init-param>
      <param-name>contextConfigLocation</param-name>
      <param-value>classpath:</param-value>
    </init-param>
posted @ 2021-03-29 15:31  忆尘不散  阅读(947)  评论(0)    收藏  举报