05 2024 档案

摘要:1.导语 //以下是一个SpringBoot应用的标准入口: public static void main(String[] args) { SpringApplication.run(TestApplication.class, args); } //SpringApplication.run 阅读全文
posted @ 2024-05-31 03:16 Yfeil 阅读(109) 评论(0) 推荐(0) 编辑
摘要:三次握手 四次挥手 阅读全文
posted @ 2024-05-30 18:52 Yfeil 阅读(27) 评论(0) 推荐(0) 编辑
摘要:前置准备: Kibana 7.4.2 Elasticsearch 7.4.2 Logstash 7.4.2 SpringBoot 2.6.13 扩展:Docker启动Logstash: docker run --restart=always -p 4560:4560 -v ~/pipeline/:/ 阅读全文
posted @ 2024-05-21 21:06 Yfeil 阅读(40) 评论(0) 推荐(0) 编辑
摘要:1.聚合函数 SUM( 列 ) OVER( ... ) :求总和 AVG( 列 ) OVER( ... ) :求平均 COUNT( 列 ) OVER( ... ) :求总数 MIN( 列 ) OVER( ... ) :取最小值 MAX( 列 ) OVER( ... ) :取最大值 2.排名函数 RA 阅读全文
posted @ 2024-05-14 04:49 Yfeil 阅读(172) 评论(0) 推荐(0) 编辑
摘要:第一范式(1NF):列不可拆分 假设我们有一个学生信息表,用来记录学生的姓名和地址: 学生ID 姓名 地址 1 张三 xx省xx市xx区 这个表违反了第一范式,因为地址不符合不可拆分要求。为了满足第一范式,需要把地址拆分成省、市、区。 第二范式(2NF):不能只依赖主键的一部分 现在,如果我们想要记 阅读全文
posted @ 2024-05-10 00:16 Yfeil 阅读(44) 评论(0) 推荐(0) 编辑