mybatis3的mapper文件报Referenced file contains errors

背景:

在springmvc+mybatis+oracle项目中,使用java代码反编译输出的xml报错

错误提示:

The errors below were detected when validating the file "mybatis-3-mapper.dtd" via the file "account-mapper.xml". In most cases these errors can be detected by validating "mybatis-3-mapper.dtd" directly. However it is possible that errors will only occur when mybatis-3-mapper.dtd is validated in the context of account-mapper.xml.

java代码:

少了www.

<?xml version="1.0" encoding="UTF-8" ?>

<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >

改为

<?xml version="1.0" encoding="UTF-8" ?>

<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://www.mybatis.org/dtd/mybatis-3-mapper.dtd" >

时间: 2024-10-09 23:22:43

mybatis3的mapper文件报Referenced file contains errors的相关文章

Spring,SpringMVC,Mybatis等配置文件报错解决(Referenced file contains errors)

今天自己搭建了ssm框架,头文件什么的都是拷贝的笔记的,本来不会出错.可是偏偏报错(如下): Referenced file contains errors (http://www.ibatis.com/dtd/sql-map-config-2.dtd). For more information, right click on the message in the  Problems View and select "Show Details..." 整整折腾了一上午,也没解决.网上

Referenced file contains errors (xml文件第一行小红叉错误)

在eclipse中开发网页时,经常会遇到写xml文件时第一行无缘无故报错.在最左面的行数上面报出一个小红叉, 点击查看错误信息: Referenced file contains errors (http://www.springframework.org/schema/beans......之类的.我这里是做的是spring的applicationContext.xml文件的,所以会报spring框架的约束格式错误.当我没有管这个错误继续运行项目时,发现这个错误并不影响项目的任何功能,但是总会

Referenced file contains errors (http://tiles.apache.org/dtds/tiles-config_3_0.dtd)

java开发时遇到的问题,之前还是好好的,没有错误提示.可是今天一打开项目就出现这种问题.真不知道是怎么回事,在这里求助.错误如下: Referenced file contains errors (http://tiles.apache.org/dtds/tiles-config_3_0.dtd). For more information, right click on the message in the Problems View and select "Show Details...&

Spring配置文件中突然出现异常Referenced file contains errors

Referenced file contains errors (http://cxf.apache.org/schemas/jaxws.xsd). For more information, right click on the message in the Problems View and select "Show Details..." 在Eclipse IDE中的一个J2EE工程,之前是好好的,一段时间没去搭理. 有一天需要在项目中加点东西,打开工程一看,其中一个Spring

XML Referenced file contains errors

mybatis mapper 配置文件出现该错误 网上搜了下关于这个错误,导致的原因可能有一下可能: 一种可能是 版本不同 对于Eclipse编译器来说,会有个缓存,这样验证的时候他会告诉你版本不统一 Preferences -> General -> Network Connections -> Cache 删除里面的缓存 还有一种可能是,当前使用的版本和配置文件写的不同意,导致dtd等文件不会被正确加载,那么就是改成当前使用的对应版本了 XML Referenced file con

Referenced file contains errors (http://www.springframework.org/schema...错误

Referenced file contains errors (http://www.springframework.org/schema...错误 Referenced file contains errors (http://www.springframework.org/schema/beans/spring-beans-3.0.xsd). 关于这个错误,导致的原因可能是 一种可能是 之前用的Spring版本,和现在用的不同 对于Eclipse编译器来说,会有个缓存,这样验证的时候他会告

Referenced file contains errors (http://mybatis.org/dtd/mybatis-3-config.dtd). For more information, right click on the message in the Problems View and select &quot;Show Details...&quot;

mybatis配置文件报错Referenced file contains errors mybatis的配置文件报错 The errors below were detected when validating the file "mybatis-3-config.dtd" via the file "mybatis-config.xml".  In most cases these errors can be detected by validating &qu

Referenced file contains errors 错误解决方法

Referenced file contains errors (http://www.springframework.org/schema/beans/spring-beans-3.0.xsd). 关于这个错误,导致的原因可能是 一种可能是 之前用的Spring版本,和现在用的不同 对于Eclipse编译器来说,会有个缓存,这样验证的时候他会告诉你版本不统一 Preferences -> General -> Network Connections -> Cache 删除里面的缓存 还

Referenced file contains errors

在Spring的配置文件下出现了Referenced file contains errors的错误, 解决办法: 1.Window--Preferences--MyEclipse--Validation下 可以去掉XML Validator 和 XSL Validator 等文件类型的验证信息(包括Manual和Build), PS:同样的,如果其他类型的文件出现这种类似的验证错误,你可以去掉对应文件类型的验证.同时为了提高项目启动和编译速度,可以适当去掉某些文件的验证. 2.这是由于缓冲造成