mybatis
文章平均质量分 66
look-word
这个作者很懒,什么都没留下…
展开
-
一文学会Spring JDBC 使用
一文学会Spring JDBC 使用原创 2022-09-14 23:39:31 · 378 阅读 · 0 评论 -
MybatisPlus高级特性
MybatisPlus高级特性原创 2022-08-09 21:54:46 · 554 阅读 · 0 评论 -
Mybatis 缓存原理
Mybatis 缓存原理原创 2022-08-04 17:30:24 · 164 阅读 · 0 评论 -
05 Mybatis官方代码生成器的使用
Mybatis官方代码生成器的使用原创 2022-06-23 15:30:28 · 250 阅读 · 0 评论 -
1 Mybatis动态SQL
Mybatis动态SQL 1. 注解开发 我们也可以使用注解的形式来进行开发,用注解来替换掉xml。 使用注解来映射简单语句会使代码显得更加简洁,但对于稍微复杂一点的语句,Java 注解不仅力不从心,还会让你本就复杂的 SQL 语句更加混乱不堪。 所以我们在实际企业开发中一般都是使用XML的形式。 1.1 步骤 ①在核心配置文件中配置mapper接口所在的包名 <mappers> <package name="com.sangeng.dao"><原创 2022-05-05 23:45:11 · 100 阅读 · 0 评论 -
Mybatis 动态SQL
(一)if 用户传参 id 和name 如若name为空 我们也可以找出结果的时候 可以用动态sql if <select id="findUser" resultType="com.hgzy.pojo.User"> select * from user where id=#{id} <if test="name!=null"> and name = #{name} </if> </s原创 2021-11-11 21:50:34 · 194 阅读 · 0 评论 -
Mybatis 快速入门
创建maven工程 准备数据 CREATE DATABASE /*!32312 IF NOT EXISTS*/`mybatis_db` /*!40100 DEFAULT CHARACTER SET utf8 */; USE `mybatis_db`; DROP TABLE IF EXISTS `user`; CREATE TABLE `user` ( `id` int(11) NOT NULL AUTO_INCREMENT, `username` varchar(50) DEFAULT NULL,原创 2021-11-10 23:40:17 · 980 阅读 · 0 评论 -
封装mybatis的输出结果
封装 MyBatis 输出结果 resultType: 执行 sql 得到 ResultSet 转换的类型,使用类型的完全限定名或别名。 注意如果返回的是集 合,那应该设置为集合包含的类型,而不是集合本身。resultType 和 resultMap,不能同时使用。 mybatis内部实现 ...原创 2021-07-05 14:46:00 · 84 阅读 · 0 评论 -
mybatis传递参数
传递一个参数 Dao 接口中方法的参数只有一个简单类型(java 基本类型和 String),占位符 #{ 任意字符 },和方 法的参数名无关。 接口方法 Student selectStuId(int id) mapper文件 <select id="selectStuId" resultType="com.hgzy.domian.Student"> select id,name,emial,age from student where id=#{studentId} //#{stude原创 2021-07-04 10:48:45 · 128 阅读 · 0 评论 -
mybatis2021-07-02
使用mybatis的动态代理 dao接口 package com.hgzy.dao; import com.hgzy.domain.City; import java.util.List; public interface cityDao { List<City> selectCity(); int insertCity(City city); City selectCityId(Integer integer); } getMapper获取mybatis的代理对原创 2021-07-02 23:22:33 · 69 阅读 · 0 评论 -
mybatis常用配置信息
/**java原创 2021-06-16 09:58:18 · 65 阅读 · 0 评论