- 博客(5)
- 收藏
- 关注
原创 mybatis实例完整过程
1、configuration核心配置文件1.1、mybatis-config.xml<?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> &l
2022-03-01 20:50:58 177
原创 mybatis小结
1、模糊查询1.1、UserMapper//模糊查询List<User> getUserLike(String value);1.2、UserMapper.xml<select id="getUserLike" resultType="com.jin.pojo.User"> select * from user.user where name like "%"#{value}"%"</select>2、配置之属性优化2.1、dp.propert
2022-02-28 22:17:02 142
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人