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);
        }

上一篇:高德各省行政区显示不同区别颜色(转)


下一篇:Vue3 高德地图 只显示中国区域 修改国境线颜色 自定义地图 DistrictLayer