摘要: Protobuf - java package name and sharing proto file across projects 4 I have two java projects that produce and consume messages from Kafka, one proje 阅读全文
posted @ 2023-07-28 17:45 CharyGao 阅读(30) 评论(0) 推荐(0)
摘要: 老版本的mongodbtemplate连接池的用法 登录后复制 spring: data: mongodb: address: 127.0.0.1:37017 replica-set: database: xxx username: xxx password: xxxx # Configure sp 阅读全文
posted @ 2023-07-28 16:34 CharyGao 阅读(704) 评论(0) 推荐(0)
摘要: Difference between “final static String” and “static String”? Consider the following declaration at the top of a class: static int intVal = 42; static 阅读全文
posted @ 2023-07-28 16:32 CharyGao 阅读(18) 评论(0) 推荐(0)
摘要: 在满足世界各地用户需求的开源项目中,本地化扮演着极其重要的角色。除了编码之外,语言翻译也是世界各地的人们从事开源事业并向开源项目做出贡献的主要方式之一。 在语言服务行业存在着各种工具(听到这个事情惊讶吗?),这些工具可以让本地过过程简单即又保质保量。本地化工具包括如下几类: 计算机辅助翻译(CAT) 阅读全文
posted @ 2023-07-28 16:32 CharyGao 阅读(624) 评论(0) 推荐(0)
摘要: 企业Shell面试题10:开发企业级MySQL启动脚本 说明: MySQL启动命令为: /bin/sh mysqld_safe --pid-file=$mysqld_pid_file_path 2>&1 >/dev/null & 1. 停止命令逻辑脚本为: mysqld_pid=`cat "$mys 阅读全文
posted @ 2023-07-28 16:30 CharyGao 阅读(20) 评论(0) 推荐(0)
摘要: [root@oldboyedu ~]# cat oldboy.txt 48 Oct 3bc1997 lpas 68.00 lvx2a 138 484 Jan 380sdf1 usp 78.00 deiv 344 483 nov 7pl1998 usp 37.00 kvm9d 644 320 aug 阅读全文
posted @ 2023-07-28 16:30 CharyGao 阅读(22) 评论(0) 推荐(0)
摘要: 访问Nginx出现状态码为403 forbidden原因及故障模拟 1) nginx配置文件里不配置默认首页参数或者首页文件在站点目录下没有 <code id="code_id_0" class="has-numbering language-bash">index index.php index. 阅读全文
posted @ 2023-07-28 16:24 CharyGao 阅读(153) 评论(0) 推荐(0)
摘要: 批量创建10个用户stu01-stu10,并且设置随机8位密码,要求:不能用shell循环(例如:for,while等),只能用linux命令及管道实现。 此题考察的是基础命令的熟练运用,因此,限制了使用shell循环。 echo stu{01..10}:`echo $RANDOM|md5sum|c 阅读全文
posted @ 2023-07-28 16:22 CharyGao 阅读(208) 评论(0) 推荐(0)
摘要: 本人Android开发,某一天,被告知自己程序URL的编码中,空格被转换成了+,导致对方识别不成空格。当然我清楚的记得我是使用了URLEncoder的编码和解码方法,并无其他操作,而且这可是JDK提供的方法,因此我直接进行了测试URLEncoder.encode("张三 妈妈","UTF-8")其输 阅读全文
posted @ 2023-07-28 16:18 CharyGao 阅读(941) 评论(0) 推荐(0)
摘要: Authas — 开源的java诊断工具 下载安装 authas是一个jar包,可以直接下载后运行 wget https://alibaba.github.io/arthas/arthas-boot.jar java -jar arthas-boot.jar 就可以启动起来。启动后,authas会自 阅读全文
posted @ 2023-07-28 16:16 CharyGao 阅读(142) 评论(0) 推荐(0)
摘要: 字符串匹配之 BM 算法 roseduan写字的地方 关注 0.4 2020.04.20 22:26 字数 4786 阅读 1799评论 3喜欢 6 一、基本概念 字符串匹配是计算机科学领域中最古老、研究最广泛的问题之一,层出不穷的前辈们也总结了非常多经典的优秀算法,例如 BF 算法、RK 算法、B 阅读全文
posted @ 2023-07-28 16:07 CharyGao 阅读(192) 评论(0) 推荐(0)
摘要: 简介: 来自:http://www.cnblogs.com/luoyun/archive/2013/01/04/2844274.html 过滤器(Filter)和拦截器(Interceptor)的区别 Filter介绍 Filter可以认为是Servlet的一种“加强版”,它主要用于对用户请求进行预 阅读全文
posted @ 2023-07-28 14:50 CharyGao 阅读(157) 评论(0) 推荐(0)