上一页 1 ··· 3 4 5 6 7 8 9 10 下一页
摘要: 大致步骤: 1. 安装sonarqube server (生成token) 2 安装jenkins 启动 (包括各种插件 sonarqube scanner, 配置gitlab(gitlab提供token,供jenkins拉取项目),sonarqube server地址(token)) 3. 配置 阅读全文
posted @ 2022-02-23 17:12 清明雨下 阅读(183) 评论(0) 推荐(0)
摘要: 检查 settings idea invalidate cache http 不支持 maven版本要在3.8.1以下 A模块依赖B模块,B模块修改后,deploy后,在A所在的缓存需要 invalidate(File >invalidate Caches) 阅读全文
posted @ 2022-02-18 14:29 清明雨下 阅读(35) 评论(0) 推荐(0)
摘要: 开源的wiki- confluence 核心概念 空间 页面 模板 权限 阅读全文
posted @ 2022-02-16 10:19 清明雨下 阅读(258) 评论(0) 推荐(0)
摘要: 获取分布式锁String result = jedis.set(lockKey, userId, "NX", "PX", expireTime);if("OK".equals(result)){return true}等价于事务1.setnx lockKey userId2.expire lockK 阅读全文
posted @ 2022-01-19 10:34 清明雨下 阅读(340) 评论(0) 推荐(0)
摘要: Validator VALIDATOR = Validation.buildDefaultValidatorFactory().getValidator()ABean aben= new Abean(); VALIDATOR .validator(aben, GroupAdd.class) //Gr 阅读全文
posted @ 2022-01-14 16:37 清明雨下 阅读(354) 评论(0) 推荐(0)
摘要: import com.google.common.hash.Hashingimport org.apache.spark.sql.Rowimport org.apache.spark.sql.catalyst.util.ArrayDataimport org.apache.spark.sql.exp 阅读全文
posted @ 2021-12-22 11:22 清明雨下 阅读(208) 评论(0) 推荐(0)
摘要: <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <phase>package</phase> <goa 阅读全文
posted @ 2021-12-14 13:45 清明雨下 阅读(115) 评论(0) 推荐(0)
摘要: <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>2.10</version> <execu 阅读全文
posted @ 2021-12-14 10:55 清明雨下 阅读(221) 评论(0) 推荐(0)
摘要: jdbc url加rewriteBatchedStatement=true 这样直接使用一个preparedStatement去执行 insert del update ;不然会拆成多个单个preaparedStatement去执行,所以性能会低 https://blog.csdn.net/lh15 阅读全文
posted @ 2021-12-07 11:01 清明雨下 阅读(179) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/lanwp5302/article/details/101628732 阅读全文
posted @ 2021-07-29 15:15 清明雨下 阅读(315) 评论(0) 推荐(0)
上一页 1 ··· 3 4 5 6 7 8 9 10 下一页