
Mybatis
文章平均质量分 59
Mybatis
niki_yeun
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
MybatisPlus整合 数据库中Version,delete,create_time字段详解,主键策略
数据库字段详解原创 2022-11-04 17:01:53 · 2222 阅读 · 0 评论 -
mybatis-plus,自动生成id插入数据库 type mismatch
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.reflection.ReflectionException: Could not set property ‘id’ of ‘class com.hongzhe.ucenterservice.entity.UcenterMember’ with value ‘1494590129510080514’ Cause: java.lang.Illega原创 2022-02-18 16:42:04 · 713 阅读 · 0 评论 -
mybatis 一对多关系
User-Order:一对多 pojo: public class User { private Integer uid; private String username; private String sex; private Date birthday; private String address; private String uuid2; private ...原创 2018-06-28 10:27:07 · 189 阅读 · 0 评论 -
角色 权限 菜单 用户
pojo Permission public class Permission implements Serializable{ private Integer pid; private String description; private String keyword; private String pname; //一个权限包含多个角色 ...原创 2018-08-02 09:09:47 · 13024 阅读 · 2 评论 -
mybaits之dao层通用写法sqlsessiontemplate
1.编写dao接口 public interface DAO { /** * 保存对象 * @param str * @param obj * @return * @throws Exception */ public Object save(St...转载 2019-01-22 16:29:29 · 1135 阅读 · 0 评论