在Eclipse Neon 3中加载描述符错误

时间:2017-11-07 04:44:08

标签: java eclipse eclipse-neon

我在stackoverflow中发现了几个问题同样问题,但没有一个问题有适当的解决方案

我在Eclipse中创建了一个Demo动态项目。现在它显示了一条错误消息

An internal error occurred during: "Loading descriptor for DemoServlet.".
org.eclipse.emf.ecore.xmi.IllegalValueException: Value '
Container
' is not legal. (platform:/resource/DemoServlet/WebContent/WEB-INF/web.xml, 15, 
14)

此错误消息在一段时间后反复显示,但我能够正确运行项目。描述符如下

<?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>DemoServlet</display-name>

 <resource-ref>

 <res-ref-name>
   jdbc/javaDB
 </res-ref-name>
 <res-type>
   javax.sql.DataSource
 </res-type>
 <res-auth>
    Container
 </res-auth>
 </resource-ref>
 <welcome-file-list>
   <welcome-file>Login.html</welcome-file>
 </welcome-file-list>
 </web-app>

如何从eclipse中消除此错误?

1 个答案:

答案 0 :(得分:2)

Eclipse工具可能过于严格,并且不期望res-auth中实际值周围的任何空白。尝试更改它,以便在开始和结束标记之间只有“容器”一词。