Springboot集成Mybatis和Mybatis-Plus的大坑
-
- 集成问题来源
- 问题来源
- 挖坑过程
- 解决方案
集成问题来源
问题来源
笔者近期在整合Springboot和mybatis时,一直采用的以下方式:
pom文件:
<dependency>
<groupId>org.mybatis.spring.boot</groupId>
<artifactId>mybatis-spring-boot-starter</artifactId>
<version>2.1.3</version>
</dependency>
yml文件:
mybatis:
type-aliases-package: top.powersys..*.entity
mapper-locations: classpath:top/powersys**/dao/xml**/dao/xml/*.xml
然后,重新更新Mapper类:
@Mapper
public interface DebtMapper {
IPage<DebtRecordDto> getDebtByAccoutNoList(Page<DebtRecordDto> page, @Param("accountNo") String accountNo);
}
最终能够正常输出出来
终于解决了,不需要自己返回再封装。