Sentinel配置持久化到Nacos(基于push模式) 修改后代码位置: https://gitee.com/maju_blogs/sentinel-dashboard-nacos/tree/master/sentinel-dashboard 1.从github上下载源码 git clone https://github.com/alibaba/Sent 2年前 Administrator java 0
pdf转word(pdf2docx) 安装包 pip install pdf2docx 执行代码 from pdf2docx import Converter biantai= Converter(r'D:\Desktop\\111.pdf') biantai.convert(r'D:\Desktop\\111.docx') bian 2年前 Administrator 默认分类 0
idea配置EasyCodeMybatisCodeHelperPro entity.java ##引入宏定义 $!{define.vm} ##使用宏定义设置回调(保存位置与文件后缀) #save("/entity", "$!{po.vm}.java") ##使用宏定义设置包后缀 #setPackageSuffix("entity") ##使用全局变量实现默 2年前 Administrator 默认分类 0
解决spirngboot连接mysql报Communications link failure问题 com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure The last packet sent successfully to the server was 0 milliseconds 2年前 Administrator 0
docker开启远程访问 修改vim /lib/systemd/system/docker.service这个文件 ExecStart=/usr/bin/dockerd -H tcp://0.0.0.0:2375 -H unix:///var/run/docker.sock 重启docker systemctl da 2年前 Administrator 1
解决seata使用mycat代理库找不到表元数据问题 因为seata会读取数据库元数据信息,此时会读取到表的实际库名,但是服务数据库连接池是使用的代理数据库,回滚或者提交会使用实际库名,导致找不到表报错 临时修改seata-all.jar中的代码 加入以下代码,将读取到的实际数据库替换为mycat代理数据库,代码路径为: io.seata.rm.dat 2年前 Administrator 0
kafka相关命令 依次在各节点上启动: ./kafka-server-start.sh -daemon ../config/server.properties 查看当前服务器中的所有topic ./kafka-topics.sh --list --zookeeper localhost:2181 创建topic ./ 2年前 Administrator 0
jackson配置 spring: jackson: date-format: yyyy-MM-dd HH:mm:ss time-zone: GMT+8 serialization: #格式化输出 indent_output: true #忽略无法 2年前 Administrator java 0