Kafka入门示例

摘要: KafKa基本介绍 Kafka是开源的分布式事件流平台,被数千家公司用于高性能数据管道、流分析、数据集成和任务关键型应用程序。Kafka是由Scala写成的一个分布式消息队列。 它包括Topic、Consumer、Producer,Broker(包含多个Partition)。 同一个Topic的消息 阅读全文
posted @ 2024-12-03 10:43 白首码农 阅读(10) 评论(0) 推荐(0) 编辑

基于SpringBoot3.4的Web应用的示例代码

摘要: 项目源码 https://gitee.com/bsmn/bsmn-springboot-example Maven相关命令 # 启动, 启动后默认的访问地址:http://localhost:36069/ mvn spring-boot:run # 打包 mvn clean package # 打包 阅读全文
posted @ 2024-12-02 15:40 白首码农 阅读(21) 评论(0) 推荐(0) 编辑

JDK17的快速安装

摘要: 下载地址 https://www.oracle.com/java/technologies/javase/jdk17-archive-downloads.html 解压到指定目录 mkdir -p /mnt/d/apps tar -zxf /mnt/d/software/jdk-17.0.12_li 阅读全文
posted @ 2024-12-02 15:38 白首码农 阅读(16) 评论(0) 推荐(0) 编辑

Kafka单机集群安装

摘要: 下载地址 https://kafka.apache.org/downloads 解压到指定目录 tar -zxf /mnt/d/software/kafka_2.12-3.9.0.tgz -C /mnt/d/apps mv /mnt/d/apps/kafka_2.12-3.9.0 /mnt/d/ap 阅读全文
posted @ 2024-12-02 15:34 白首码农 阅读(11) 评论(0) 推荐(0) 编辑

ZooKeeper单机集群的安装

摘要: 下载地址 https://dlcdn.apache.org/zookeeper/zookeeper-3.8.4/ 解压到指定目录 tar -zxf /mnt/d/software/apache-zookeeper-3.8.4-bin.tar.gz -C /mnt/d/apps mv /mnt/d/a 阅读全文
posted @ 2024-12-02 15:25 白首码农 阅读(8) 评论(0) 推荐(0) 编辑

使用nvm安装不同版本的NodeJS

摘要: 下载及安装 下载地址:https://github.com/coreybutler/nvm-windows/releases 配置nodejs的镜像地址 nvm node_mirror https://npmmirror.com/mirrors/node/ nvm npm_mirror https: 阅读全文
posted @ 2023-01-09 23:09 白首码农 阅读(154) 评论(0) 推荐(0) 编辑

GitBook的使用备忘

摘要: GitBook环境搭建 npm install -g gitbook-cli # 新建目录,如helloworld cd helloworld # 执行此语句,需等待一段时间 gitbook init # 启动服务 gitbook serve 遇到问题 TypeError: cb.apply is 阅读全文
posted @ 2023-01-09 23:07 白首码农 阅读(24) 评论(0) 推荐(0) 编辑

ReactJS单页面应用之项目搭建

摘要: 初衷 因接手的项目前端采用reactjs+antd,为把控项目中的各个细节,所以想做一些整理,以免后期遗忘。 创建及启动项目 # 全局安装create-react-app # 如果曾经安装过,可先移除: npm uninstall -g create-react-app npm install -g 阅读全文
posted @ 2022-10-27 00:41 白首码农 阅读(160) 评论(0) 推荐(0) 编辑

在VSCODE的终端运行Python时汉字乱码问题处理

摘要: 问题描述 在VSCODE的终端运行Python时,打印输出中文时汉字出现乱码, 文件编码都是UTF-8 解决步骤 1、打开Settings配置窗口(Ctrl+,) 2、搜索:code-runner.executor 如下图所示 3、找到python所在行,加上 set PYTHONIOENCODIN 阅读全文
posted @ 2022-10-07 22:38 白首码农 阅读(521) 评论(0) 推荐(0) 编辑

NodeJS的安装

摘要: 前言 虽然这些东西很基本也很简单,但是过段时间就会遗忘,有空记录下吧,反正也不耗费多少时间,后期至少比百度快点。 安装步骤 Linux下的安装 下载安装包 下载地址:http://nodejs.cn/download/ 解压文件 tar xf node-v16.17.0-linux-x64.tar. 阅读全文
posted @ 2022-09-25 09:01 白首码农 阅读(26) 评论(0) 推荐(0) 编辑