springboot 开发问题总结

发布时间:2022-06-20 发布网站:脚本宝典
脚本宝典收集整理的这篇文章主要介绍了springboot 开发问题总结脚本宝典觉得挺不错的,现在分享给大家,也给大家做个参考。
  1. 数据库已有字段为mysql 关键字时,比如 desc 字段。通过mybatis-generator 自动生成后,字段就是desc,然后查询就会语法报错。

解决办法

  1. 增加配置--xx_db_generatorConfig.xml<property name="beginningDelimiter" value="`"/><property name="endingDelimiter" value="`"/>

<tabble xxx delimitAllColumns="true">

生成的字段都会变成desc,`desc`这种格式


 

2 需要对每个对象值判断,否则就有NPE

`CityAgentContractPO agentContractList = cityAgentContractPOMapper.selectOneByExample(example);
    if (null != agentContractList && null != agentContractList.getStartTime()) {
        res.setAgentStartTime(agentContractList.getStartTime());
    } else {
        res.setAgentStartTime(null);
    }`

3 字段装箱/拆箱可能NPE

点击查看代码
int agentId = agentInfoPOMapper.insertSelective(agentInfoPO);
        if (agentId > 0) {
            openAccount(agentInfoPO.getAgentId());
        } else {
            throw new CityAgentException(CrmErrorEnums.ERROR_CITYAGENTLIB_ADD_VALID);
        }

脚本宝典总结

以上是脚本宝典为你收集整理的springboot 开发问题总结全部内容,希望文章能够帮你解决springboot 开发问题总结所遇到的问题。

如果觉得脚本宝典网站内容还不错,欢迎将脚本宝典推荐好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。
标签:数据库