哦嘞啊嘞

Results 3 issues of 哦嘞啊嘞

增删改查太多,把常用的处理逻辑写在了抽象父类。 场景是这样,AServiceImpl实现了AService接口,继承了AbstractService抽象类,AServiceImpl部分方法直接super调用。 AbstractService通过AServiceImpl重写的getMapper方法获得相应mapper的引用,然后调用mapper的相关方法。 我在测试AServiceImpl相关方法的时候,尝试mock mapper的相关方法,但是不起作用,而且日志里也没有打印抽象类内部的调用链路。请问是我的操作有问题吗?

I want to warmup connection pool when the application start, and I want get some configs from database. So I wrote this, `Test` is the name of database table. ```java...

:question:need-triage

## Bug Report Here is my demo. Update something that not exists, throw an exception in `database transaction`. Two statements executed parallel using `Flux`. ``` java Query query = Query.query(Criteria.where("id").is(3));...