
Mybatis
文章平均质量分 70
下一杯咖啡
这个作者很懒,什么都没留下…
展开
-
Mybatis分页查询
1.在maven工程中引入架包<dependency> <groupId>com.github.pagehelper</groupId> <artifactId>pagehelper-spring-boot-starter</artifactId> <version>1.2.3</version>&l原创 2018-05-16 09:49:51 · 585 阅读 · 0 评论 -
mybatis 利用maven 自动生成代码
pom.xdl引入架包<dependencies> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>5.1.8</version>原创 2018-05-16 15:43:20 · 232 阅读 · 0 评论 -
mybatis_day01
实体类:略接口:public interface BankAccountDAO { int bankAccountCount(); }映射器:.xml<mapper namespace="com.xdl.dao.BankAccountDAO"> <!-- 定义SQL语句 --> <select id="bankAccountCount"...原创 2018-07-20 10:22:51 · 217 阅读 · 0 评论 -
myBatis第三方插件分页
1.搭建查询所有的数据一个环境 接口:List<XdlBankAccount> accountListPageDatas5(); mapper.xml配置: <select id="accountListPageDatas5" resultType="com.fl.bean.XdlBankAccount"> s...原创 2018-07-21 10:14:46 · 374 阅读 · 0 评论