最主要的还是环境依赖问题
版本兼容性 pagehelper starter应该在1.2.3版本以上,否则不生效
SpringBoot做的一系类的自动化配置处理,pagehelper貌似会自动识别pageNum和pageSize并自动在sql语句中插入limit
pagehelper 超过最大页数还能返回数据的问题,设置pagehelper.reasonable=false即可
代码规范很重要,要驼峰就全驼峰,Mybatis的下划线转驼峰的功能遇到驼峰加下划线的变量名估计也很为难把
还有傻吊问题
单元测试报错 无法读取application.properties文件
在@SpringBootTest中增加webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT
@RunWith(SpringJUnit4ClassRunner.class)
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
public class AppTest {
}
本文由 烦fpy 创作,采用 知识共享署名4.0 国际许可协议进行许可
本站文章除注明转载/出处外,均为本站原创或翻译,转载前请务必署名
最后编辑时间为: Apr 7, 2020 at 03:38 pm