WireChen

Results 4 comments of WireChen
trafficstars

the same problem! - maybe the ssl client should take some config parameter, like password.

那意思就是你还是不推荐使用纯application配置文件的方式来集成mapper和pagehelper吗?还是我不用relax的方式来写配置文件就行得通?

问题找到了,我的定制Mapper和一般Mapper都放在dao目录下了。看到你源码里面说了定制Mapper不能被扫描到

``` @GetMapping public Result list(@RequestParam(defaultValue = "0") Integer page, @RequestParam(defaultValue = "0") Integer size) { PageHelper.startPage(page, size); List list = userService.findAll(); PageInfo pageInfo = new PageInfo(list); return ResultGenerator.genSuccessResult(pageInfo); } ```