mybatis
内心的一片海
这个作者很懒,什么都没留下…
展开
-
mybatisy PageHelper分页
1.加入pom.xml依赖 <!--PageHalper依赖--> <dependency> <groupId>com.github.pagehelper</groupId> <artifactId>pagehelper</artifactId> <version>5.1.10</version> <原创 2021-03-28 21:33:06 · 110 阅读 · 1 评论 -
mybatis配置文件
主配置文件<?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> <!--指定properties文件的位置,从类路径根开始找文件--&g原创 2021-03-28 20:43:49 · 87 阅读 · 1 评论 -
mybatis, 动态sql 标签的使用
select * from student where id in{1001,1002,1003}集合实际上就是遍历in后面的id值在没有标签的时候要想执行 in后面的Arraylist集合需要 public void testfor() { ArrayList<Integer> list = new ArrayList<>(); list.add(1001); list.add(1002); list....原创 2021-03-28 18:28:41 · 70 阅读 · 0 评论 -
mybatis 模糊查询的两种方式
mapper文件中直接指定java代码中指定原创 2021-03-28 15:24:05 · 88 阅读 · 0 评论 -
mybais resulttype的使用 resultType返回resultmap
<!--使用resultMap1>先定义resultMap2>在select标签,使用resultMap来引用1来定义de--> <!--定义resultMap id:自定义名称,表示你定义的这个resultMap type:java类型的全限定名称 --> <resultMap id="studentMap" type="com.bjpowernode.domain.Student"> <.原创 2021-03-28 13:50:40 · 94 阅读 · 0 评论