<?xml version="1.0" encoding="UTF-8" ?><!DOCTYPEmapperPUBLIC"-//mybatis.org//DTD Mapper 3.0//EN""http://mybatis.org/dtd/mybatis-3-mapper.dtd"><mappernamespace="com.aistart.tech.mapper.UserMapper"><selectid="findOne"resultType="User"parameterType="User">select * from user<trimprefix="where"prefixOverrides="and | or"><iftest="userName != null">user_name = #{userName}</if><!-- if标签之间是相互独立的 --><iftest="email != null">AND email = #{email}</if></trim><!-- 只会执行一个--><!-- <choose><when test="userName != null">AND user.user_name like #{userName}</when><when test="email != null ">AND email like #{email}</when><otherwise>AND 1 = 1</otherwise></choose>--><!-- 默认帮我们拼接了where,并智能识别where or and是否应该写出来<where><!– test就是条件表达if的() –><if test="userName != null">user_name = #{userName}</if><!– if标签之间是相互独立的 –><if test="email != null">AND email = #{email}</if></where>-->limit 1;</select><selectid="findOneLikeName"resultType="User"><bindname="pattern"value="'%' + name + '%'"/>SELECT * FROM userWHERE user.user_name LIKE #{pattern}</select><insertid="insertList">insert into user (user_name,password_hash,email)value<foreachcollection="userList"item="user"separator=",">(#{user.userName},#{user.passwordHash},#{user.email})</foreach></insert></mapper>
UserMapper.java
packagecom.aistart.tech.mapper;importcom.aistart.tech.pojo.User;importorg.apache.ibatis.annotations.Param;importorg.apache.ibatis.annotations.Select;importjava.util.List;publicinterfaceUserMapper{/**** 通过条件集合返回特定查询的结果user** @Param user就是所有条件的集合(id name .....)* @return 根据动态的组合条件产生的结果*///也就说${}是非预编译的statement(字符串拼接,更直接但不安全),而#{}是praperStatemen预编译语句(留占位符?)publicUserfindOne(User user);// @Select("select * from user where user_name like concat('%',#{name},'%') limit 1")publicUserfindOneLikeName(String name);publicintinsertList(@Param("userList")List<User> userList);}
UserMapperTest.java
packagecom.aistart.tech.mapper;importcom.aistart.tech.pojo.User;importcom.aistart.tech.utils.DButil;importorg.apache.ibatis.session.SqlSession;importorg.junit.Test;importjava.util.ArrayList;importjava.util.List;importstaticorg.junit.Assert.*;publicclassUserMapperTest{SqlSession sqlSession =DButil.getSqlSession();UserMapper mapper = sqlSession.getMapper(UserMapper.class);@TestpublicvoidfindOneTest(){User user =newUser();//里面有什么值就是传递什么参数(条件)// user.setUserName("小明");user.setEmail("qq.com");User one = mapper.findOne(user);System.out.println(one);sqlSession.close();;}@TestpublicvoidfindOneLikeName(){User one = mapper.findOneLikeName("王");System.out.println(one);}@TestpublicvoidinsertList(){ArrayList<User> users =newArrayList<>();users.add(newUser("lxy","123456","123456@qq.com"));users.add(newUser("yc","hhxx,ttxs","hhxx@qq.com"));int rows = mapper.insertList(users);System.out.println(rows);sqlSession.commit();sqlSession.close();}}
FL Studio 21.2.2是一款功能强大的音乐制作软件,也被广大用户称为“水果编曲”。这款软件支持简体中文和英语,适用于Windows 10/11(仅限64位)以及MacOS 10.13.6或更高版本的系统。
在FL Studio 21.2.2中,用户可以享受…
论文标题:Deep Learning for Trajectory Data Management and Mining: A Survey and Beyond
作者:Wei Chen(陈伟), Yuxuan Liang(梁宇轩), Yuanshao Zhu, Yanchuan Chang, Kang Luo, Haomin Wen(温皓珉), Lei Li, Yanwei Yu(于彦伟), Qingsong Wen(文青…