zoukankan      html  css  js  c++  java
  • mybatis 数据库.xml中方法参考

    ① selectByPrimaryKey()

    User user = userDAO.selectByPrimaryKey(100); 相当于select * from user where id = 100

    ② selectByExample() 和 selectByExampleWithBLOGs()

    UserExample example = new UserExample();
    Criteria criteria = example.createCriteria();
    criteria.andUsernameEqualTo("joe");
    criteria.andUsernameIsNull();
    example.setOrderByClause("username asc,email desc");
    List<?>list = userDAO.selectByExample(example);
    相当于:select * from user where username = 'joe' and username is null order by username asc,email desc

    注:在iBator 生成的文件UserExample.java中包含一个static 的内部类 Criteria ,在Criteria中有很多方法,主要是定义SQL 语句where后的查询条件。

    ③ insert()

    User user = new User();
    user.setId(101);
    user.setUsername("test");
    user.setPassword("123")
    user.setEmail("joe@163.com");
    userDAO.insert(user);
    相当于:insert into user(ID,username,password,email) values(101,'test','123','joe@163.com');

     ④ updateByPrimaryKey() 和 updateByPrimaryKeySelective()

    User user =new User();
    user.setId(101);
    user.setUsername("joe");
    user.setPassword("joe");
    user.setEmail("joe@163.com");
    userDAO.updateByPrimaryKey(user);
    相当于:update user set username='joe',password='joe',email='joe@163.com' where id=101

    User user = new User();
    user.setId(101);
    user.setPassword("joe");
    userDAO.updateByPrimaryKeySelective(user);
    相当于:
    update user set password='joe' where id=101

     updateByExample() 和 updateByExampleSelective()

    UserExample example = new UserExample();
    Criteria criteria = example.createCriteria();
    criteria.andUsernameEqualTo("joe");
    User user = new User();
    user.setPassword("123");
    userDAO.updateByPrimaryKeySelective(user,example);
    相当于:update user set password='123' where username='joe'

     deleteByPrimaryKey()

    userDAO.deleteByPrimaryKey(101);  相当于:delete from user where id=101

    ⑦ deleteByExample()

    UserExample example = new UserExample();
    Criteria criteria = example.createCriteria();
    criteria.andUsernameEqualTo("joe");
    userDAO.deleteByExample(example);
    相当于:delete from user where username='joe'

    ⑧ countByExample()

    UserExample example = new UserExample();
    Criteria criteria = example.createCriteria();
    criteria.andUsernameEqualTo("joe");
    int count = userDAO.countByExample(example);
    相当于:select count(*) from user where username='joe'

  • 相关阅读:
    使用xca生成SSL证书
    在 Apache error_log 中看到多个信息,提示 RSA server certificate CommonName (CN) 与服务器名不匹配(转)
    SSL/TLS 高强度加密: 常见问题解答
    JAVA 集合操作总结
    VUE 微信开发
    实战 ant design pro 中的坑
    Spring boot 配置 mybatis xml和动态SQL 分页配置
    VUE打包上线优化
    VUE中如何优雅的动态绑定长按事件
    用C自撸apache简易模块,搭建图片处理服务器。
  • 原文地址:https://www.cnblogs.com/zhenmingliu/p/2502261.html
Copyright © 2011-2022 走看看