摘要: https://www.wlnmp.com/install 阅读全文
posted @ 2023-07-19 14:06 西门长海 阅读(53) 评论(0) 推荐(0) 编辑
摘要: 一个偷懒的小shell, ``` #!/usr/bin/expect #************************************************************************* # > File Name: expect.sh # > Author: che 阅读全文
posted @ 2023-07-08 08:57 西门长海 阅读(223) 评论(0) 推荐(0) 编辑
摘要: ## SPI和API的区别 SPI代表服务提供者接口(Service Provider Interface),是一种Java编程语言的编程规范。它定义了一组接口或类的规范,供第三方开发人员实现,以向应用程序提供特定的服务或功能。SPI侧重于接口的定义和实现者的开发。 API代表应用程序编程接口(Ap 阅读全文
posted @ 2023-07-03 17:46 西门长海 阅读(1371) 评论(0) 推荐(0) 编辑
摘要: feat: 新功能(feature) fix: 修补bug docs: 文档(documentation) style: 格式(不影响代码运行的变动) refactor: 重构(即不是新增功能,也不是修改bug的代码变动) chore: 构建过程或辅助工具的变动 revert: 撤销,版本回退 pe 阅读全文
posted @ 2023-05-12 15:27 西门长海 阅读(704) 评论(0) 推荐(0) 编辑
摘要: 来自你的消息: spring的启动流程是什么样的 来自ChatAI的消息: Spring框架的启动流程大致如下: 1.加载Spring配置文件。即,读入并解析配置文件,构建出Spring IoC容器的初始状态。 2.初始化IoC容器。IoC容器的初始化包括对BeanFactory进行初始化、注册Be 阅读全文
posted @ 2023-05-04 16:59 西门长海 阅读(2895) 评论(0) 推荐(0) 编辑
摘要: 来自你的消息: javabean怎么理解 来自ChatAI的消息: JavaBean是指符合一定规范的Java类,用于封装数据。JavaBean一般包含私有属性、公有getter/setter方法和无参构造方法。JavaBean的主要目的是提供一种规范化的方式来创建可重用的组件,这些组件可以用于在J 阅读全文
posted @ 2023-05-04 16:52 西门长海 阅读(122) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/muxuen/article/details/125360459 阅读全文
posted @ 2023-03-24 09:17 西门长海 阅读(48) 评论(0) 推荐(0) 编辑
摘要: https://mp.weixin.qq.com/s/rSKemC4VsHNWi_ud8gU-mA 阅读全文
posted @ 2023-03-24 09:16 西门长海 阅读(108) 评论(0) 推荐(0) 编辑
摘要: https://mp.weixin.qq.com/s/fpEnNcOOcVYZfweldj-DCQ 阅读全文
posted @ 2023-03-24 08:25 西门长海 阅读(19) 评论(0) 推荐(0) 编辑
摘要: https://www.jianshu.com/p/cb5cb5937686 阅读全文
posted @ 2023-03-23 02:46 西门长海 阅读(11) 评论(0) 推荐(0) 编辑
摘要: https://www.jianshu.com/p/6e0c5df04b5f 阅读全文
posted @ 2023-03-23 02:43 西门长海 阅读(39) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/qq_23859799/article/details/85862821/ 阅读全文
posted @ 2023-03-17 17:06 西门长海 阅读(12) 评论(0) 推荐(0) 编辑
摘要: Sub 合并当前工作簿下的所有工作表() On Error Resume Next Application.ScreenUpdating = False Application.DisplayAlerts = False Set st = Worksheets.Add(before:=Sheets( 阅读全文
posted @ 2022-12-09 11:47 西门长海 阅读(287) 评论(0) 推荐(0) 编辑
摘要: 集合初始化的时候,建议指定集合初始化值大小。 说明:HashMap使用HashMap(int initialCapacity) 初始化。 正例:initialCapacity=(需要存储的元素个数/负载因子)+1 。 注意负载因子(即loaderfactor) 默认为0.75,如果暂时无法确定初始值 阅读全文
posted @ 2022-10-21 16:57 西门长海 阅读(1024) 评论(0) 推荐(0) 编辑
摘要: springboot+mysql+mybatis实现菜单树(超详细): https://blog.csdn.net/weixin_45623109/article/details/126337515 阅读全文
posted @ 2022-10-19 18:00 西门长海 阅读(18) 评论(0) 推荐(0) 编辑
摘要: MAT java 内存分析工具:https://cloud.tencent.com/developer/article/1377476 内存溢出问题排查:https://mp.weixin.qq.com/s/lQut5nWIT3WbuVA57bw4pw JVM系列之:MAT工具使用教程: https 阅读全文
posted @ 2022-10-19 09:54 西门长海 阅读(26) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/aaa58962458/article/details/120764754 阅读全文
posted @ 2022-10-18 11:26 西门长海 阅读(225) 评论(0) 推荐(0) 编辑
摘要: https://www.freesion.com/article/6207256685/ 阅读全文
posted @ 2022-09-28 15:19 西门长海 阅读(18) 评论(0) 推荐(0) 编辑
摘要: https://www.freesion.com/article/9639853954/ 阅读全文
posted @ 2022-09-28 10:54 西门长海 阅读(77) 评论(0) 推荐(0) 编辑
摘要: 例如:t_user 用户表中 username 重复。将username重复的用户查询出来,保留一条数据。 先附上查重的sql以供验证: SELECT username, count(*) as num FROM t_user GROUP BY username HAVING count(*)>1; 阅读全文
posted @ 2022-09-09 17:07 西门长海 阅读(8542) 评论(0) 推荐(1) 编辑