上一页 1 2 3 4 5 6 7 8 9 10 ··· 46 下一页

2024年2月18日

Random

摘要: maven <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 --> <dependency> <groupId>org.apache.commons</groupId> <artifactId>comm 阅读全文

posted @ 2024-02-18 15:34 anpeiyong 阅读(47) 评论(0) 推荐(0)

2024年2月4日

Mysql常用函数

摘要: group by 需求 获取每个分组内的某条数据 1、group by后取每个分组中最新一条数据 SELECT MAX(id) FROM test GROUP BY id; 2、group by后取每个分组中第一条插入的数据 SELECT MIN(id) FROM test GROUP BY id; 阅读全文

posted @ 2024-02-04 10:09 anpeiyong 阅读(12) 评论(0) 推荐(0)

2024年1月26日

线程状态&线程控制

摘要: 线程状态 新建状态 new Thread() 后 该线程处于新建状态,与其他Java对象一样,未表现出线程的特征; 就绪状态 当 Thread的对象 调用了 start方法后,该线程处于 就绪状态; JVM会为当前线程创建 运行时环境(虚拟机栈、程序计数器); 处于 就绪状态的线程 并未开始执行,需 阅读全文

posted @ 2024-01-26 17:33 anpeiyong 阅读(18) 评论(0) 推荐(0)

RocketMQ

摘要: 领域模型 https://rocketmq.apache.org/zh/docs/domainModel/01main/ 概述 Apache RocketMQ 是一款典型的分布式架构下的中间件产品,使用异步通信方式和发布订阅的消息传输模型。 通信方式和传输模型的具体说明,请参见下文通信方式介绍和消息 阅读全文

posted @ 2024-01-26 10:03 anpeiyong 阅读(30) 评论(0) 推荐(0)

2024年1月10日

JVM---内存分析工具

摘要: 离线工具 需要先使用 jmap 导出dump文件 jmap -dump:live,format=b,file=xx.hprof pid IBM HeapAnalyzer https://www.ibm.com/support/pages/ibm-heapanalyzer open field -> 阅读全文

posted @ 2024-01-10 16:01 anpeiyong 阅读(69) 评论(0) 推荐(0)

2024年1月4日

GitLab

摘要: https://gitlab.cn/ 阅读全文

posted @ 2024-01-04 17:16 anpeiyong 阅读(9) 评论(0) 推荐(0)

CI&CD

摘要: https://zhuanlan.zhihu.com/p/544271371?utm_id=0 CI(Continuous Integration,持续集成) CD(Continuous Delivery,持续交付/Continuous Deployment,持续部署) 阅读全文

posted @ 2024-01-04 17:14 anpeiyong 阅读(12) 评论(0) 推荐(0)

Jenkins

摘要: 概述 官网:https://www.jenkins.io/zh/ Jenkins所处的位置 阅读全文

posted @ 2024-01-04 15:39 anpeiyong 阅读(8) 评论(0) 推荐(0)

2023年12月25日

架构基础

摘要: 特点,本质 软件架构简介 抽象而言,架构就 是对系统中的实体以及实体之间的关系所进行的抽象描述, 是对物/信息的功能与形式元素之间的对应情况所做的分配, 是对元素之间的关系以及元素同周边环境之间的关系所做的定义; 软件架构的核心价值,即是控制系统的复杂性,将核心业务逻辑和技术细节的分离与解耦; 软件 阅读全文

posted @ 2023-12-25 09:46 anpeiyong 阅读(35) 评论(0) 推荐(0)

2023年12月21日

Timestamp

摘要: 概述 A thin wrapper around <code>java.util.Date</code> that allows the JDBC API to identify this as an SQL <code>TIMESTAMP</code> value.It adds the abil 阅读全文

posted @ 2023-12-21 10:14 anpeiyong 阅读(58) 评论(0) 推荐(0)

上一页 1 2 3 4 5 6 7 8 9 10 ··· 46 下一页

导航