摘要: 啦啦啦~~我不生产规范,我只是规范的搬运工 风格指南 代码风格以google code style为 标准,规范内容: 英文原文: https://google.github.io/styleguide/javaguide.html 中文参考: https://github.com/fantasti 阅读全文
posted @ 2023-05-09 11:29 伊丽莎白菜 阅读(68) 评论(0) 推荐(0) 编辑
摘要: 应用修改 引入依赖 目的是实现手动获取链路信息、链路信息日志记录等扩展功能。 <properties> <skywalking.version>8.14.0</skywalking.version> </properties> <dependencies> <!-- 省略其他依赖 --> <depe 阅读全文
posted @ 2023-05-09 11:25 伊丽莎白菜 阅读(323) 评论(0) 推荐(0) 编辑
摘要: 日志规约 【强制】应用中不可直接使用日志系统(Log4j、Logback)中的 API,而应依赖使用日志框架(如SLF4J)中的 API,使用门面模式的日志框架,有利于维护和各个类的日志处理 方式统一。 【强制】日志文件至少保存 15 天,因为有些异常具备以“周”为频次发生的特点。对于当天日志,以 阅读全文
posted @ 2023-05-09 11:24 伊丽莎白菜 阅读(65) 评论(0) 推荐(0) 编辑
摘要: 代码扫描 maven settings.xml全局配置 <pluginGroups> <pluginGroup>org.sonarsource.scanner.maven</pluginGroup> </pluginGroups> <profiles> <profile> <id>sonar</id 阅读全文
posted @ 2023-05-09 11:21 伊丽莎白菜 阅读(360) 评论(0) 推荐(0) 编辑