-
-
1. Mybatis开启二级缓存, 在Mapper文件中自定义SQL的方法有缓存, Mybatis-Plus本身注入的方法没有使用缓存,而是新发送SQL语句, 查找许久,没有找到原因, 不知是何缘故?
2. Mybatis-Plus本身的通用Service的selectPage, 其中Page需要指定泛型, 报表查询需要关联多个表, 此时需要在xml中自定义SQL语句, 此时如何分页呢?
…
-
在最新版的druid 中,发生如下异常
Exception in thread "main" java.lang.NoSuchMethodError: com.alibaba.druid.sql.ast.expr.SQLAggregateExpr.getOption()Lcom/alibaba/druid/sql/ast/expr/SQLAggregateExpr$Option;
at co…
-
hi,abel533,我下载了本demo项目,在使用单个mapper时没有报这个警告错误,但是当把mapper增加为2个以上时,就会报该异常信息,不知具体的原因。
跟踪代码,看到会优先执行MyBatisMapperScannerConfig扫描,虽然设置了AutoConfigureAfter,MyBatisMapperScannerConfig修改definition.setBeanClass(…
-
不知道发生了什么,在完成插入后,调用了一次SELECT LAST_INSERT_ID() ,但预编译发生错误,没传入任何参数..
![image](https://cloud.githubusercontent.com/assets/15207108/20468304/6d625b9e-afd0-11e6-9d15-2db55d2dc8cb.png)
-------------------…
-
@vlsi @davecramer We have a user (@Viniciusmsss) of HikariCP and pgjdbc that is [running into](https://github.com/brettwooldridge/HikariCP/issues/477) what appears to be [an old issue](http://postgres…
-
```
//第二种,Mapper接口方式的调用,推荐这种使用方式。
PageHelper.startPage(1, 10);
List list = countryMapper.selectIf(1);
//第三种,Mapper接口方式的调用,推荐这种使用方式。
PageHelper.offsetPage(1, 10);
List list = countryMapper.sele…
ghost updated
6 years ago
-
为什么我分页时获取count总数时是select count(0) from (select * from table ....),这样有些查询效率很低,有其他的解决办法么?
-
I customized mybatis `sqlSessionFactory` in xml which included `pageHelper` plugins that i didn't add to pom, so it caused `ClassNotFound` exception which called `BeanCreationException`. However, sinc…
-
```java
@GetMapping("/getAll")
public Result list(@RequestParam(defaultValue = "0") Integer page, @RequestParam(defaultValue = "5") Integer size) {
PageHelper.startPage(page, size);
…