摘要: docker-compose.yml services: mysql: image: mysql:8 container_name: mysql volumes: - ./data:/var/lib/mysql environment: - TZ=Asia/Shanghai - MYSQL_ROOT 阅读全文
posted @ 2024-11-13 21:06 Nihaorz 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 修改 /etc/init.d/dockerd 使用 procd_set_param env 设置环境变量 原脚本: start_service() { local nofile=$(cat /proc/sys/fs/nr_open) process_config procd_open_instanc 阅读全文
posted @ 2024-11-12 14:23 Nihaorz 阅读(15) 评论(0) 推荐(0) 编辑
摘要: Dockerfile: FROM eclipse-temurin:8-jre as builder WORKDIR application ARG JAR_FILE=target/*.jar COPY ${JAR_FILE} application.jar RUN java -Djarmode=la 阅读全文
posted @ 2024-10-18 16:02 Nihaorz 阅读(12) 评论(0) 推荐(0) 编辑
摘要: headscale 安装参考:https://www.cnblogs.com/nihaorz/p/18455027 tailscale 安装 cd /var/lib/ curl -OL https://pkgs.tailscale.com/stable/tailscale_1.74.1_arm64. 阅读全文
posted @ 2024-10-09 20:32 Nihaorz 阅读(214) 评论(0) 推荐(0) 编辑
摘要: docker-compose.yml services: headscale: image: headscale/headscale:v0.23.0 container_name: headscale volumes: - /etc/uhttpd.crt:/etc/uhttpd.crt - /etc 阅读全文
posted @ 2024-10-09 20:02 Nihaorz 阅读(100) 评论(0) 推荐(0) 编辑
摘要: IDEA 右键菜单 - 注册.reg Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\*\shell\Open with IDEA] "Icon"="D:\\Program Files\\ideaIU 阅读全文
posted @ 2024-09-25 23:46 Nihaorz 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 启用root用户ssh远程登录 nano /etc/ssh/sshd_config,PermitRootLogin 修改为 yes: #PermitRootLogin prohibit-password PermitRootLogin yes 配置华为云软件源 nano /etc/apt/sourc 阅读全文
posted @ 2024-09-10 10:34 Nihaorz 阅读(48) 评论(0) 推荐(0) 编辑
摘要: 众所周知,在 Spring 的 bean 中使用 this 引用,会导致 AOP 切面失效,那我们就不用 this,使用 self() 代替 SpringUtils.java package com.xxx.util; import org.springframework.beans.BeansEx 阅读全文
posted @ 2024-01-16 15:35 Nihaorz 阅读(204) 评论(0) 推荐(0) 编辑
摘要: 工具类:org.springframework.util.DigestUtils 作用:计算字节数组、输入流的 md5 摘要 所在模块:spring-core 方法 描述 String md5DigestAsHex(byte[] bytes) 返回字节数组的 md5 摘要(计算字符串) String 阅读全文
posted @ 2024-01-16 11:32 Nihaorz 阅读(198) 评论(0) 推荐(0) 编辑
摘要: 工具类:org.springframework.util.StopWatch 作用:记录方法执行耗时,统计每个方法的耗时占比 所在模块:spring-core 方法 描述 void start(String taskName) 开始一个新的监测任务,可设置任务名称。记录当前时间和任务名称 void 阅读全文
posted @ 2024-01-16 11:18 Nihaorz 阅读(191) 评论(0) 推荐(0) 编辑