微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐