摘要: 参考博客地址:https://blog.csdn.net/Anita__Li/article/details/111356888 问题描述:产品用Axure软件画的原型图下载下来之后 用google浏览器访问需要安装Axure插件 但是国内访问google商城需要FQ 大部分人可能选择换个浏览器打开 阅读全文
posted @ 2022-04-12 09:57 爱不死 阅读(810) 评论(0) 推荐(0) 编辑
摘要: 最近重构项目中,涉及到表结构变更, 需要对原来的数据做代码层面的双向更新,保证数据一致性。发现mysql中有REPLACE 函数 REPLACE INTO coupon_test.w_user_coupon_use_record( id,user_id_code, user_coupon_id, o 阅读全文
posted @ 2021-07-07 16:30 爱不死 阅读(191) 评论(0) 推荐(0) 编辑
摘要: 在线地址 https://www.macwk.com/ 阅读全文
posted @ 2021-03-14 14:39 爱不死 阅读(256) 评论(0) 推荐(0) 编辑
摘要: 最近碰到一个项目中需要使用多个rabbitmq,连接信息很好配置,配置多连接工厂就可以了,消费者的demo好像不多,做下简单记录 1.队列信息都是需要指定AmqpAdmin 进行关联,交换机,队列,Binder @Autowired @Qualifier("customAmqpAdmin1") pr 阅读全文
posted @ 2020-10-28 19:00 爱不死 阅读(1342) 评论(0) 推荐(0) 编辑
摘要: 1.条件注解 当条件成立时进行注入 支持表达式判断 所有注解: https://blog.csdn.net/qq_36804701/article/details/83414941 演示表达式注解: @ConditionalOnExpression https://blog.csdn.net/qq_ 阅读全文
posted @ 2019-12-27 18:05 爱不死 阅读(152) 评论(0) 推荐(0) 编辑
摘要: 个人理解 做下记录,不正确的地方望不吝赐教 这是hashmap初始化容量时候 对容量大小做的处理,保证初始化容量为最近的2的幂次方(JDK1.8) static final int tableSizeFor(int cap) { int n = cap - 1; n |= n >>> 1; n |= 阅读全文
posted @ 2019-11-23 13:24 爱不死 阅读(2433) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/wait_notify/article/details/70268194 https://blog.csdn.net/a718515028/article/details/86703186 oom GCeasy gc在线分析~ https://www.cn 阅读全文
posted @ 2019-11-04 23:28 爱不死 阅读(144) 评论(0) 推荐(0) 编辑
摘要: 说明: jdk1.8 严格区分LocalDate(日期) LocalDateTime(时间日期) LocalTime(时间) public static void main(String[] args) { System.out.println(LocalDate.now());//年月日 Syst 阅读全文
posted @ 2019-09-11 16:56 爱不死 阅读(2163) 评论(0) 推荐(0) 编辑
摘要: 安装 解压到bin目录 , logpath 属性必填 ./mongod fork dbpath=/home/mongodb/data bind_ip=0.0.0.0 port 3666 logpath=/home/mongodb/log/mongodb.log 阅读全文
posted @ 2019-08-27 10:22 爱不死 阅读(729) 评论(0) 推荐(0) 编辑
摘要: 官方安装文档和使用说明 https://help.aliyun.com/product/29966.html?spm=a2c4g.11186623.6.540.6efa6029JhlPfx 是什么? 阿里巴巴开发的一款部署项目的idea插件,集成打包部署的动作,支持脚本,可以省去xshell和文件上 阅读全文
posted @ 2019-08-14 00:26 爱不死 阅读(2502) 评论(0) 推荐(0) 编辑