eclipse报错org.xml.sax.SAXParseException; lineNumber: 1; columnNumber: 1; 前言中不允许有内容。

eclipse报错org.xml.sax.SAXParseException; lineNumber: 1; columnNumber: 1; 前言中不允许有内容。

eclipse报错org.xml.sax.SAXParseException; lineNumber: 1; columnNumber: 1; 前言中不允许有内容。_第1张图片
这个问题我想了很久,一开始说是和编码有问题,后来我就用notepad++打开一个一个的看,发现并没有问题,后来无意间看到这个就是这个web.xml下的一个第二个classpath:后边啥也没有写,第一个写的是beans.xml,第二个应该写mvc.xml

<!DOCTYPE web-app PUBLIC
        "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
        "http://java.sun.com/dtd/web-app_2_3.dtd" >

<web-app>
  <display-name>Archetype Created Web Application</display-name>
  <!-- 配置加载Spring的配置文件 -->
  <context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>classpath:beans.xml</param-value>
  </context-param>
  <!-- 解决中文乱码问题 -->
  <filter>
    <filter-name>encoding</filter-name>
    <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
    <init-param>
      <param-name>encoding</param-name>
      <param-value>utf-8</param-value>
    </init-param>
  </filter>
  <filter-mapping>
    <filter-name>encoding</filter-name>
    <url-pattern>/*
  
  
    org.springframework.web.context.ContextLoaderListener
  

  
    springmvc
    org.springframework.web.servlet.DispatcherServlet
    
    
      contextConfigLocation
      classpath:mvc.xml
      
      
    
    1
  
  
    springmvc
    /
  

就是classpath:后边没有写全

![出错的地方,所以写代码的时候还是要细心](https://img-blog.csdnimg.cn/20210428083759275.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3dlaXhpbl80Mzk5MDUzMg==,size_16,color_FFFFFF,t_70)

你可能感兴趣的:(java)