首页 > 其他分享 >Mybatis映射文件配置

Mybatis映射文件配置

时间:2023-03-06 12:23:41浏览次数:38  
标签:文件 映射 Mybatis article 主键 select 属性

<?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">
<mapper namespace="mapper.ArticleMapper">
    <resultMap id="studentMap" type="student">
<!--        构造方法-->
        <constructor></constructor>
<!--        主键-->
        <id></id>
<!--        列的映射关系-->
        <result></result>
<!--        一对一关联 外键-->
        <association property=""></association>
<!--        一对多关键-->
        <collection property=""></collection>
<!--        结果集处理方法-->
        <discriminator javaType="">
            <case value=""></case>
        </discriminator>
    </resultMap>
    
   <select id="getArticleById" parameterType="Integer" resultType="Article">
        select *
        from article
        where article_id = #{articleId}
   </select>

    <sql id="studentSql">
        sid,name,age
    </sql>

    <select id="getStudent">
        select <include refid="studentSql"></include>
        from
    </select>
</mapper>

1.主键相关属性

2.select相关属性

标签:文件,映射,Mybatis,article,主键,select,属性
From: https://www.cnblogs.com/lwx11111/p/17183299.html

相关文章

  • ASP.NET上传文件夹的三种解决方案
    ​ 以ASP.NETCoreWebAPI 作后端 API ,用 Vue 构建前端页面,用 Axios 从前端访问后端 API,包括文件的上传和下载。 准备文件上传的API #region 文件上传......
  • Mybatis配置文件
    1.结构配置的属性顺序不能错<?xmlversion="1.0"encoding="UTF-8"?><!DOCTYPEconfigurationPUBLIC"-//mybatis.org//DTDMapper3.0//EN""http:/......
  • 查看yum安装文件路径
    查看yum安装文件路径查看yum默认安装目录的方法如下:1.首先,找到安装包[root@localhost/]#rpm-qa|grepbpftrace-toolsbpftrace-tools-0.13.0-2.el7.noarch记住......
  • PHP上传文件夹的三种解决方案
    ​ PHP用超级全局变量数组$_FILES来记录文件上传相关信息的。1.file_uploads=on/off 是否允许通过http方式上传文件2.max_execution_time=30 允许脚本最大执行时......
  • PHP常用文件函数
    1、路径相关函数1、dirname()返回路径中的目录名称部分。2、basename()返回路径中的文件名部分。3、pathinfo()返回关于文件路径的信息。4、realpath()返回绝对路......
  • C# 获取一个目录下的所有文件和文件夹的集合
    usingSystem;usingSystem.Collections.Generic;usingSystem.IO;usingSystem.Linq;//文件夹列表privatestaticList<string>DirectorysList=newList<str......
  • qt中文件读一行操作
     windows平台下也就是回车换行。此外:QT帮助文档中对QIODevice::Text描述是说在读取时,将行结束符转换成\n;在写入时,将行结束符转换成本地格式,例如Win32平台上是\r\n......
  • centOS端口映射命令
    初始化端口映射环境:echo1>/proc/sys/net/ipv4/ip_forwardiptables-tnat-APOSTROUTING-jMASQUERADE映射端口:iptables-tnat-APREROUTING-d172.16.0.4-ptcp......
  • 复现vulhub php文件包含漏洞
     (1) 搭建靶场   (2) 访问http://192.168.88.140:8083/lfi.php?file=/etc/passwd,发现存在文件包含漏洞   (3) 运行脚本文件python2.7exp.py192.168.8......
  • springmvc配置文件
    <?xmlversion="1.0"encoding="UTF-8"?><beansxmlns="http://www.springframework.org/schema/beans"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"......