美文网首页
合一代码规范

合一代码规范

作者: Yuri1996 | 来源:发表于2020-01-09 10:50 被阅读0次

    遇到的一些问题

    log对象, toString()方法

    log.info("保存进港信息{}", JSON.toJSONString(req));  √
    log.info("保存进港信息{}", req);  ×
    

    尽量追求代码简洁

    HttpHeaders header = new HttpHeaders();
    return new ResponseEntity<>(res,header,HttpStatus.OK);  ×
    
    return new ResponseEntity<>(res, HttpStatus.OK);  √
    

    相关文章

      网友评论

          本文标题:合一代码规范

          本文链接:https://www.haomeiwen.com/subject/faqyactx.html