Mybatis
think12
做了不一定能成功,但不做永远都不会成功!
展开
-
MyBatis的Mapper接口以及Example的实例函数及详解
转载 http://blog.csdn.net/biandous/article/details/65630783一、mapper接口中的方法解析mapper接口中的函数及方法方法功能说明int countByExample(UserExample example) thorws SQLException按条件计数int deleteByPrimaryKey(Integer id) thorws ...转载 2017-12-07 15:31:57 · 2002 阅读 · 0 评论 -
浅谈 Mybatis中的 ${ } 和 #{ }的区别
好了,真正做开发也差不多一年了。一直都是看别人的博客,自己懒得写,而且也不会写博客,今天就开始慢慢的练习一下写博客吧。前段时间刚好在公司遇到这样的问题。一、举例说明1 select * from user where name = "dato"; 2 3 select * from user where name = #{name}; 4 5 select * from user wher...转载 2018-02-24 21:08:38 · 449 阅读 · 0 评论