Erro de XML Multiple markers at this line - The markup in the document following the root eleme

0 respostas
W

É o arquivo web.xml de um projeto web dinamico de java feito no Eclipse EE Luna Release com Apache Tomcat 8.0
Estou tendo o seguinte erro:

Multiple markers at this line
- The markup in the document following the root element must be well-formed.
-

Segue abaixo o código:

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" id="WebApp_ID" version="3.1">
  <display-name>AulaCalc3</display-name>
  <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    <welcome-file>index.htm</welcome-file>
    <welcome-file>index.jsp</welcome-file>
    <welcome-file>default.html</welcome-file>
    <welcome-file>default.htm</welcome-file>
    <welcome-file>default.jsp</welcome-file>
  </welcome-file-list>
   
<servlet>
 	<display-name>au061010</display-name>
    <servlet-name>Calculadora</servlet-name>
    <servlet-class>Calculadora</servlet-class>
</servlet>
<servlet-mapping>
    <servlet-name>Calculadora</servlet-name>
    <url-pattern>/Calculadora</url-pattern>
</servlet-mapping>
</web-app>
</web-app>
Criado 16 de setembro de 2014
Respostas 0
Participantes 1