会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
盘思动
三思而后折腾!
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
17
18
19
20
21
22
23
24
25
···
133
下一页
2023年7月1日
10.7 单例模式
摘要: ### 单例模式 饿汉模式 ``` class Singleton { // 单例程序类 // 在类内部进行Single类对象实例化,为了防止可能出现重复实例化所以使用final标记 private static final Singleton INSTANCE = new Singleton();
阅读全文
posted @ 2023-07-01 11:52 盘思动
阅读(13)
评论(0)
推荐(0)
2023年6月29日
idea springboot本地打包配置
摘要: 项目打包 命令记录 ``` 打包前配置maven/admin模块需配置的命令: clean package -pl renren-admin -am -amd 本地打包后:renren-admin/target/pos-admin.jar 生成这个文件 /project/server/pos/pos
阅读全文
posted @ 2023-06-29 11:56 盘思动
阅读(84)
评论(0)
推荐(0)
mac 复制一个文件夹里面内容到另外一个文件夹,并覆盖里面内容
摘要: 
阅读全文
posted @ 2023-06-29 10:45 盘思动
阅读(283)
评论(0)
推荐(0)
2023年6月27日
java instanceof 关键词
摘要: * instanceof 是一个二元运算符,用于检查对象是否属于某个类或其子类的实例  * instanceof
阅读全文
posted @ 2023-06-27 00:11 盘思动
阅读(13)
评论(0)
推荐(0)
2023年6月26日
el-input-number只可以输入整数
摘要: ``` ```
阅读全文
posted @ 2023-06-26 15:33 盘思动
阅读(819)
评论(0)
推荐(0)
2023年6月24日
springboot 学习框架
摘要: ### 李兴华,springboot开发书籍配套视频,56个小时 * https://www.bilibili.com/video/BV1wL411H7W8?p=172&vd_source=debae4e77e1cafd283cb9668d2acb3a7
阅读全文
posted @ 2023-06-24 14:41 盘思动
阅读(18)
评论(0)
推荐(0)
spring 学习框架知识结构
摘要: ### b站上,spring开发实战,书籍配套视频,55个小时 * https://www.bilibili.com/video/BV1144y1g7Q2/?spm_id_from=333.999.0.0&vd_source=debae4e77e1cafd283cb9668d2acb3a7
阅读全文
posted @ 2023-06-24 14:40 盘思动
阅读(10)
评论(0)
推荐(0)
js 获取当前时间
摘要: ``` getNow(){ let date = new Date(); let y = date.getFullYear(); let m = date.getMonth() + 1; let d = date.getDate(); let H = date.getHours(); let mm
阅读全文
posted @ 2023-06-24 12:04 盘思动
阅读(51)
评论(0)
推荐(0)
2023年6月21日
Springboot框架中,controller,service,dao,dto,entity,xml关系拓扑图
摘要: * SpringBoot框架中的Entity,DAO,Service,Controller层的关系  
评论(0)
推荐(0)
2023年6月15日
nodejs 一些零碎buffer操作
摘要: ### demo1 ``` const buf1 = Buffer.from([0x24, 0x40, 0x24, 0x40]);// 这样加上`0x`,就是定义的16进制 console.log(buf1);// console.log(buf1[0]);//36 console.log(buf1
阅读全文
posted @ 2023-06-15 09:12 盘思动
阅读(21)
评论(0)
推荐(0)
上一页
1
···
17
18
19
20
21
22
23
24
25
···
133
下一页
公告