上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 133 下一页
摘要: ### 单例模式 饿汉模式 ``` class Singleton { // 单例程序类 // 在类内部进行Single类对象实例化,为了防止可能出现重复实例化所以使用final标记 private static final Singleton INSTANCE = new Singleton(); 阅读全文
posted @ 2023-07-01 11:52 盘思动 阅读(13) 评论(0) 推荐(0)
摘要: 项目打包 命令记录 ``` 打包前配置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)
摘要: ![](https://img2023.cnblogs.com/blog/1202393/202306/1202393-20230629104543078-950952721.png) 阅读全文
posted @ 2023-06-29 10:45 盘思动 阅读(283) 评论(0) 推荐(0)
摘要: * instanceof 是一个二元运算符,用于检查对象是否属于某个类或其子类的实例 ![](https://img2023.cnblogs.com/blog/1202393/202306/1202393-20230627001030631-1779185985.png) * instanceof 阅读全文
posted @ 2023-06-27 00:11 盘思动 阅读(13) 评论(0) 推荐(0)
摘要: ``` ``` 阅读全文
posted @ 2023-06-26 15:33 盘思动 阅读(819) 评论(0) 推荐(0)
摘要: ### 李兴华,springboot开发书籍配套视频,56个小时 * https://www.bilibili.com/video/BV1wL411H7W8?p=172&vd_source=debae4e77e1cafd283cb9668d2acb3a7 阅读全文
posted @ 2023-06-24 14:41 盘思动 阅读(18) 评论(0) 推荐(0)
摘要: ### 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)
摘要: ``` 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)
摘要: * SpringBoot框架中的Entity,DAO,Service,Controller层的关系 ![](https://img2023.cnblogs.com/blog/1202393/202306/1202393-20230621111317899-379968088.png) ![](htt 阅读全文
posted @ 2023-06-21 10:21 盘思动 阅读(239) 评论(0) 推荐(0)
摘要: ### 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 下一页