上一页 1 2 3 4 5 6 ··· 24 下一页
摘要: 这是什么神仙博客! https://www.cnblogs.com/kaleidoscope/p/9629156.html 阅读全文
posted @ 2019-09-01 11:48 高圈圈 阅读(617) 评论(0) 推荐(0) 编辑
摘要: PageHelper: https://blog.csdn.net/baidu_38083619/article/details/82463058 Sql执行顺序: https://blog.csdn.net/gnd15732625435/article/details/82106697 阅读全文
posted @ 2019-08-28 15:37 高圈圈 阅读(201) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/yi_afly/article/details/52012593 阅读全文
posted @ 2019-08-27 11:17 高圈圈 阅读(206) 评论(0) 推荐(0) 编辑
摘要: 文档结构: 一个用户想增加一个单词: db.getCollection("collect_record").update({'userId':1234},{$addToSet:{word_records:{'word':'update2','to':'en','from':'hi'}}}) 一个用户 阅读全文
posted @ 2019-08-23 11:35 高圈圈 阅读(152) 评论(0) 推荐(0) 编辑
摘要: 适配器模式: https://www.cnblogs.com/honger/p/5970283.html 策略模式: https://www.jianshu.com/p/3bcf55cf83d3 阅读全文
posted @ 2019-08-20 12:27 高圈圈 阅读(666) 评论(0) 推荐(0) 编辑
摘要: 错误栈: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'redisReferenceResolver': Unsatisfied dependency 阅读全文
posted @ 2019-08-14 12:07 高圈圈 阅读(7313) 评论(1) 推荐(1) 编辑
摘要: https://www.jianshu.com/p/377bb840802f Thread类中维护了一个成员变量:ThreadLocalMap 每个Thread有一个自己的ThreadLocalMap,ThreadLocal在get和set时,会先通过getMap()获取当前thread的Threa 阅读全文
posted @ 2019-08-13 23:47 高圈圈 阅读(2139) 评论(0) 推荐(0) 编辑
摘要: 这里的bean GenericObjectPoolConfig中有一个genericObjectPoolConfig.setJmxEnabled(false); 关掉监控 这个异常就不会抛出了~ 还有要注意 在每次使用完连接之后 要调用close()或者使用try(){}的方式,会自动调用close 阅读全文
posted @ 2019-08-13 18:59 高圈圈 阅读(3444) 评论(0) 推荐(0) 编辑
摘要: CI 持续集成:代码提交会自动触发项目构建和测试等流程CD 持续交付 持续部署:提交代码后的流程 完全自动化 jenkins是一个开源的持续集成工具 DevOps(Development和Operations的组合词)是一种重视“软件开发人员(Dev)”和“IT运维技术人员(Ops)”之间沟通合作的 阅读全文
posted @ 2019-08-13 09:54 高圈圈 阅读(230) 评论(0) 推荐(0) 编辑
摘要: Jedis连接Redis: 非线程安全 如果是多线程环境下共用一个Jedis连接池,会产生线程安全问题,可以通过创建多个Jedis实例来解决,但是创建许多socket会影响性能,因此好一点的方法是使用JedisPool https://blog.csdn.net/lihao21/article/de 阅读全文
posted @ 2019-07-31 18:38 高圈圈 阅读(5996) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 24 下一页