`
Miss_Cyan
  • 浏览: 8286 次
  • 性别: Icon_minigender_2
  • 来自: 天津
社区版块
存档分类
最新评论

Attribute "resource" must be declared for element type "mapper".

阅读更多

Mybatis项目配置别名时配置文件遇到的问题

遇到如下问题:Attribute "resource" must be declared for element type "mapper".

 

解决方案:mybatis 的dtd 文件配置有误

正确的应该是:

 

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0//EN" 
"http://mybatis.org/dtd/mybatis-3-config.dtd"> 
<configuration>
<typeAliases>
  <typeAlias type="com.entity.User" alias="user"/>
 </typeAliases>
<!-- 映射文件,存放sql语句的配置文件 -->
 <mappers>
<mapper resource="com/mybatis/demo/mapper/UserDao.xml" />
</mappers>
</configuration>

 

 

应该是configuration

这样写之后就不会再报之前那个错误了

分享到:
评论

相关推荐

    ibatis与spring的整合

    在整合iBATIS和Spring的过程中,主要目标是利用Spring的IOC(Inversion of Control)容器来管理和协调数据访问层(DAO)以及事务处理,同时利用iBATIS作为SQL映射框架,提供灵活的数据库操作。以下将详细阐述整合的...

    Tomcat ssl报错Connector attribute SSLCertificateFile must be defined when using SSL with APR解决方法

    主要介绍了Tomcat ssl报错Connector attribute SSLCertificateFile must be defined when using SSL with APR解决方法,需要的朋友可以参考下

    python_elementt_xml.zip_python xml_xml解析 python

    attribute_value = element.attrib['attribute_name'] ``` 4. **元素文本**:元素的文本内容可以通过`text`属性获取。 ```python text_content = element.text ``` 5. **创建和修改元素**:`ElementTree`也...

    Selenium WebDriver 学习笔记

    - 结合属性定位:`driver.findElement(By.cssSelector("[attribute='value']"));` - **使用XPath** - 示例:`driver.findElement(By.xpath("//div[@id='someId']/child::span"));` #### 六、多元素定位 使用 **...

    使用dom4j读写XML文档

    String text = attribute.getText(); // 或者 String text2 = rootElm.element("name").attributeValue("firstname"); ``` - 遍历某节点的所有属性: ```java for (Iterator it = rootElm.attributeIterator...

    apktool_AndResGuard:修复apktool打包出现No resource found...

    No resource identifier found for attribute... No resource found that matches the given name..... ....... 使用apktool-2.0.3也可以回编译,但是比如微信回编译后会增加到110M左右,很不友好。 而使用apktool-...

    AttributeError: module 'tensorflow.compat.v1' has no attribute '

    AttributeError: module 'tensorflow.compat.v1' has no attribute 'contrib'的问题您具体怎么解决问题具体解决的seq_loss.py文件

    must-forceinline-function-code.md

    GCC提供了`__attribute__((always_inline))`这一扩展属性来实现强制内联。当一个函数被声明为具有此属性时,无论函数的大小或者调用频率如何,编译器都会尝试将其内联化。如果无法内联,则会在编译时产生警告信息。 ...

    简单计算器的代码

    【标题】"简单计算器的代码"涉及的是创建一个基本的计算器应用,这通常是一个初学者在学习iOS开发时会遇到的项目。这个项目的核心在于理解用户界面(UI)的构建和事件处理,以及如何通过代码实现数学计算逻辑。...

    Global Mapper软件操作教程.pdf

    《Global Mapper软件操作详解》 Global Mapper是一款功能强大的地理信息系统(GIS)软件,以其全面的数据处理能力和用户友好的界面而受到广泛赞誉。本教程将深入探讨该软件的主要操作和功能,帮助用户熟练掌握其...

    Dundas.Chart.for.Winform.Enterprise.v7.1.0.1812.for.VS2008

    Vertical Column Labels - A new attribute for 2D column charts, labels can now be painted vertically inside the column, adding greater flexibility when considering labels Data Point Label Offset ...

    解决Python中报错TypeError: must be str, not bytes问题

    ### 解决Python中报错TypeError: must be str, not bytes问题 #### 一、问题背景与常见场景 在Python编程过程中,尤其是处理文件操作时,可能会遇到“TypeError: must be str, not bytes”这一错误。这通常发生在...

    java api 文档 jdk9

    A - Static variable in class javax.print.attribute.standard.MediaSize.Engineering Specifies the engineering A size, 8.5 inch by 11 inch. A - Static variable in class javax.print.attribute.standard....

    GlobalMapper软件操作教程.pdf

    《Global Mapper软件操作详解》 Global Mapper是一款功能强大的地理信息系统(GIS)软件,以其全面的数据处理能力和用户友好的界面而闻名。本教程将详细介绍Global Mapper的主要功能和操作流程,帮助用户掌握这款...

    jquery常见事件.txt

    - `$("element").removeAttr("attribute");` 删除指定元素的指定属性。 #### `removeClass()` - **用途**:删除匹配元素的一个或多个类。 - **示例**: - `$("element").removeClass("class");` 从所有指定元素...

    jQuery常用方法jQuery常用方法

    - **removeAttr(attribute)**: 移除指定的属性,例如:`$("element").removeAttr("attribute");` - **removeClass(className)**: 移除一个或多个类名。例如:`$("element").removeClass("class");` - **html()**: ...

    jQuery 之入门基本介绍

    - 获取属性值:`var value = $("#element").attr("attributeName")` - 设置属性值:`$("#element").attr("attributeName", "newValue")` 2. **文本操作**: - 获取文本:`var text = $("#element").text()` - ...

    JQuery函数大全

    - 示例:`$("element").removeAttr("attribute");` - 功能:移除被选元素指定的属性。 ##### 5. **移除类名** - **`$(selector).removeClass(className)`** - 示例:`$("element").removeClass("class");` - ...

Global site tag (gtag.js) - Google Analytics