摘要:
SpringCloud Alibaba从Nacos读取配置文件。 在开发工具运行,没有问题,正常启动。 打包后,jar包启动 xxxx.jar,出现错误: 2022-10-11 11:20:25.289 ERROR 7248 [ main] c.a.c.n.c.NacosPropertySource 阅读全文
摘要:
使用官方的docker部署方式,部署了一个单节点nacos server,部署完了后发布配置信息,报错“新增配置发布失败。请检查参数是否正确” 解决方法: 在nacos mysql数据库中分别在config_info 、his_config_info表中新增字段 encrypted_data_key 阅读全文
摘要:
问题描述: @RequestMapping(value = "upload", method = RequestMethod.POST,consumes = MediaType.MULTIPART_FORM_DATA_VALUE) public void upload(@RequestPart Mu 阅读全文
摘要:
解决方案: curl -XPUT -H "Content-Type:application/json" -d '{"persistent":{"cluster":{"max_shards_per_node":10000}}}' 'http://es-host:9200/_cluster/settin 阅读全文
摘要:
其实两者是一样的,inner join 只是为了区分left join和right join整出来的,本质还是逐行比较 阅读全文
摘要:
工具类: public class CmdTask implements Runnable { private String command; private String dirPath; public CmdTask(String dirPath, String command) { this. 阅读全文
摘要:
服务出现了oom: 查看类信息发现char[]类型实例特别多,占用堆内存特别大 跟踪几个char[]实例的GC root,发现都是保存token信息,并且根都是session 然后查看session的个数,发现有63W 我是用100并发压测的为什么会产生那么多个session?我突然想到我们是前后端 阅读全文
摘要:
进入解压的目录/demo,运行 jar cvfM0 demo.jar * 压缩后的项目即可运行 参考:https://www.cnblogs.com/liyanbin/p/6088458.html 阅读全文
摘要:
docker-compose.yml: version: '2' services: #redis容器 redis: #定义主机名 container_name: redis-single #使用的镜像 image: redis #容器的映射端口 ports: - 6379:6379 command 阅读全文
摘要:
一、栈和局部变量操作 (1)将常量压入栈的指令 aconst_null 将null对象引用压入栈 iconst_m1 将int类型常量-1压入栈 iconst_0 将int类型常量0压入栈 iconst_1 将int类型常量1压入栈 iconst_2 将int类型常量2压入栈 iconst_3 将i 阅读全文