摘要:
limit和offset用法 mysql里分页一般用limit来实现 1. select* from article LIMIT 1,3 2.select * from article LIMIT 3 OFFSET 1 上面两种写法都表示取2,3,4三条条数据 示例: select* from ar 阅读全文
摘要:
1. 第一个Mybatis程序 Mybatis-01 1.1 mybatis-config编写 <?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0 阅读全文
摘要:
问题描述: 确定在实现类上使用了注解,@Repository,并且开启了扫描包,且类旁边出现了叶子,点击叶子,会跳到配置类,即应该是注入成功了,但是测试的时候一直报错 no bean named xxxxx available。。。 可能的原因: 使用@Controller,@Service,@Re 阅读全文