tar GNU `tar' saves many files together into a single tape or disk archive, and can restore individual files from the archive. tar命令可以将多个文件或目录打包成一个大文件 ...
分类:
系统相关 时间:
2020-05-06 21:32:59
阅读次数:
93
https://stackoverflow.com/questions/59366046/how-to-handle-appsettings-for-net-core-3-1-self-contained-single-file-publish ...
分类:
移动开发 时间:
2020-05-06 11:43:00
阅读次数:
76
yls 2020/5/5 创建配置管理中心 "参考文档" 1.添加依赖包 2.在启动类上添加注解 3.创建配置文件 4.在仓库的respo目录下添加配置文件,一般在本地创建好再上传到仓库 注意文件的名称不是乱起的,例如 config single client dev.yml 和 config si ...
分类:
编程语言 时间:
2020-05-05 19:52:18
阅读次数:
85
案例一使用 Spring 的 AOP 对客户管理的 DAO 进行增强 1.1案例需求 1.1.1 需求描述 对于 CRM 的系统而言,现在有很多的 DAO 类,比如客户的 DAO,联系人 DAO 等等。客户提出 一个需求要开发人员实现一个功能对所有的 DAO 的类中以 save 开头的方法实现权限的 ...
分类:
编程语言 时间:
2020-05-04 00:46:34
阅读次数:
78
1.https://www.cnblogs.com/kgdxpr/p/5126291.htmlC:\Program Files\MariaDB 5.5\bin>mysqldump -uroot -p123456 -h 192.168.1.248 --single-transaction test a ...
分类:
数据库 时间:
2020-05-03 10:58:45
阅读次数:
144
获取连接, 释放连接 导入mysql driver, 导入druid连接池,导入Dbutils(queryRunner) druid连接db 注意点: 正确的 String sql = "insert into t_book( ,`author price sales stock img_path` ...
分类:
数据库 时间:
2020-05-03 10:41:57
阅读次数:
80
一、单例设计模式(Singleton Pattern) 单例模式也称为单子模式,单体模式。它的定义是产生一个类的唯一实例,是工作中常用的一种设计模式。 可以用创建对象的方式来实现单例模式。 var obj = { xxx: xxx }; var pattren1 = { name: 'xxx' }; ...
分类:
Web程序 时间:
2020-05-03 01:19:34
阅读次数:
100
index.js { path:"/blog/:id", name:"SingleBlog", component:SingleBlog } 1.<router-link v-bind:to="'/blog/' + blog.id"> <h2 v-color="">{{blog.title}}</h ...
分类:
其他好文 时间:
2020-05-02 21:19:57
阅读次数:
179
单一职责原则的英文是Single Responsibility Principle,简称SRP。我们在设计类的时候,尽量避免设计大而全的类,要设计粒度小、功能单一的类,使得一个类只负责完成一个功能,这样有利于提高代码的复用性、可读性、可维护性,实现代码高内聚、低耦合。 ...
分类:
其他好文 时间:
2020-05-02 11:56:24
阅读次数:
73