Recent Posts

tampermonkey 脚本模版
// ==UserScript== // @name My Demo // @namespace https://devxmate.com/ // @version 2024-11-11 // @description try to take over the wo...
2024-12-10
Read More
Jackson: 从String反序列化为Object
引入依赖 <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> </dependency> 配置 ...
2024-12-10
Read More
maxwell: CDC从mysql 到 rabbitmq
mysql配置 # /etc/my.cnf [mysqld] binlog_format=row server_id=1 log-bin=master maxwell配置 docker run -it --rm zendesk/maxwell bin/maxwell --user=mysq...
2024-11-28
Read More
debezium: CDC 从postgresql到rabbitmq
配置 postgresql 数据库配置文件添加: wal_level=logical 配置rabbitmq 配置Topic交换机 demo.public.document 并通过 document_key监听 document_queue 队列 配置debezium debezium.sink.ty...
2024-11-28
Read More
创建一个管理Java服务的shell脚本
创建脚本 run.sh: #!/bin/bash APP_NAME=/opt/apps/app.jar DEFAULT_JAVA_OPTS="-server \ -Xms1024m \ -Xmx1024m \ -Dfile.encoding=utf-8 \ -Dus...
2024-11-19
Read More
springboot项目生成镜像、推送镜像
1. 配置DOCKER_HOST 环境变量 tcp://devxmate.me:2375 2. pom.xml文件添加如下内容: <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-...
2024-11-19
Read More
ubuntu && centos 上户及销户大法
ubuntu系统 新建用户: adduser sammy 赋予用户sudo权限:usermod -aG sudo sammy 验证是否赋权成功: sudo apt update 看是否出错 删除用户: deluser sammy 删除用户及目录: deluser --remove-home samm...
2024-11-14
Read More