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