随笔分类 - 工作日记
摘要:redis部署集群的时候 文件应保持只有conf文件和src文件
阅读全文
摘要:https://www.iteye.com/blog/zz563143188-1847029 总体来说设计模式分为三大类: 创建型模式,共五种:工厂方法模式、抽象工厂模式、单例模式、建造者模式、原型模式。 结构型模式,共七种:适配器模式、装饰器模式、代理模式、外观模式、桥接模式、组合模式、享元模式。
阅读全文
摘要:Thymeleaf的主要作用是把model中的数据渲染到html中,因此其语法主要是如何解析model中的数据
阅读全文
摘要:import org.thymeleaf.util.ArrayUtils;class results { public static void main(String[] args) { int[] start = {5, 45, 9, 1}; int[] end = {54, 445, 8}; i
阅读全文
摘要:恢复内容开始 负载均衡建立在现有网络结构之上,提供了一种廉价有效透明的方法扩展网络设备和服务器的带宽,增加吞吐量、加强网络数据处理能力、提高网络的灵活性和可用性。 随着网站的发展,服务器压力越来越大,我们可能首先会将数据库,静态文件分离出去。但是随着发展,单独业务API的请求的压力也会变得很大,这时
阅读全文
摘要:https://www.cnblogs.com/aiwz/p/6154535.html
阅读全文
摘要:FFmpeg既是一种音视频编解码工具,也是一组音视频解码开发套件。作为编解码开发套件,它为开发者提供了丰富的音视频处理的调用接口。 https://blog.csdn.net/u011330638/article/details/82392268
阅读全文
摘要:https://www.cnblogs.com/king-lps/p/7757919.html
阅读全文
摘要:https://blog.csdn.net/weixian52034/article/details/52133543?utm_medium=distribute.pc_relevant.none-task-blog-BlogCommendFromBaidu-3.control&depth_1-ut
阅读全文
摘要:strcpy 函数名: strcpy 功 能: 拷贝一个字符串到另一个 用 法: char *strcpy(char *destin, char *source); 程序例: #include <stdio.h> #include <string.h> int main(void) { char s
阅读全文
摘要:/********方法二**********/ /*libuuid是一个用于生成UUID的C库,具体用法参考http://linux.die.net/man/3/libuuid,示例如下:*/ #include <stdio.h> #include <uuid/uuid.h> int main(in
阅读全文
摘要:#include <stdio.h>#include <stdlib.h> int main (){ FILE * pFile; long lSize; char * buffer; size_t result; /* 若要一个byte不漏地读入整个文件,只能采用二进制方式打开 */ pFile =
阅读全文
摘要:SpringBoot与maven创建的项目,启动application失败,报错”错误: 找不到或无法加载主类“。 试了网上方法都没有用,最后终于解决了。对于项目第一次在本地运行,删掉了target包,导致没有class文件。注意,一定要先maven install一下,重新生成target文件。再
阅读全文
摘要:https://www.cnblogs.com/chanshuyi/p/head_first_of_reflection.html
阅读全文
摘要:https://www.cnblogs.com/jingmoxukong/p/6098351.html
阅读全文
摘要:https://blog.csdn.net/mianhuantang848989/article/details/53519286
阅读全文
摘要:sed -i 's/\o240\|\o302//g' xxx.cpp
阅读全文
摘要:https://blog.csdn.net/ck784101777/article/details/93736280?utm_medium=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-2.channel_
阅读全文
摘要:-r 递归-f 不提示是否覆盖\cp –r -f test/ newtest
阅读全文