摘要: /** * ID生成 雪花算法 */ public class SnowFlake { public static SnowFlake getInstance() { return SingletonSnowFlake.instance; } private static class SingletonSnowFlake { ... 阅读全文
posted @ 2019-02-16 16:21 南望孤笑 阅读(888) 评论(0) 推荐(0) 编辑
摘要: 1.安装插件 在File-Setting-Plugins-Browse Repostitories中搜索Lombok Plugin插件安装 安装完成先别急着重启,继续设置,在File-Setting-Build, Execution, Deployment-Compiler-Annotation P 阅读全文
posted @ 2019-02-16 11:41 南望孤笑 阅读(260) 评论(0) 推荐(0) 编辑