摘要:
1、idea工具下载:https://www.jetbrains.com/idea/download/#section=windows 2、dbeaver下载:https://dbeaver.io 使用教程:https://help.aliyun.com/document_detail/122862 阅读全文
摘要:
Spring Cloud:统一异常处理 一个 SpringBoot 项目该包含哪些? 大白话认识 Kafka 背后优秀的架构设计 初始化项目 Maven仓库地址: 阅读全文
摘要:
持续更新中 kettle国内镜像下载 版本 地址 7.1版本 http://mirror.bit.edu.cn/pentaho/Data%20Integration/ 8.2版本 http://mirror.bit.edu.cn/pentaho/Pentaho%208.2/client-tools/ 阅读全文
摘要:
1、线程池状态: 一、状态类型 RUNNING(运行) 线程池被创建后处于运行状态。 接受新任务,并处理排队中的任务。 SHUTDOWN(关闭) 调用shutdown()方法后,线程池进入关闭状态。 不再接受新任务,但会继续处理已经提交到任务队列中的任务。 STOP(停止) 调用shutdownNo 阅读全文
摘要:
通过redis实现,一秒内同一个用户,限制请求一次 // 限流逻辑 String rateLimitKey = RATE_LIMIT_KEY_PREFIX + userImageUrl; Boolean isLimited = stringRedisTemplate.opsForValue().se 阅读全文
摘要:
mybatisplus按照数据库字段,逗号分隔查询数据 阅读全文
摘要:
import io.netty.bootstrap.Bootstrap; import io.netty.channel.*; import io.netty.channel.nio.NioEventLoopGroup; import io.netty.channel.socket.SocketCh 阅读全文
摘要:
Docker安装Redis 方法一、docker pull redis查找Docker Hub上的redis镜像 #docker search redis 这里我们拉取官方的镜像,标签为latest #docker pull redis:latest (第一次启动Docker-Redis主要是查看D 阅读全文
摘要:
1、controller代码 package com.saburo.server.controller.weixin; import cn.dev33.satoken.annotation.SaIgnore; import com.gcode.common.core.R; import com.sa 阅读全文
摘要:
在线网站:https://www.yiketu.com/poster/editor/user/8608943?tplId=1481244&searchLogId=0 阅读全文
摘要:
@echo off start "" "D:\Program Files\Tencent\WeChat\WeChat.exe" start "" "D:\Program Files\Tencent\WeChat\WeChat.exe" exit 阅读全文
摘要:
1、移动端开发 下载hbuildx:https://www.dcloud.io/hbuilderx.html 计算属性:会产生缓存,调用不需要每次执行。 阅读全文
摘要:
1、下载jdk 下载地址:https://www.oracle.com/java/technologies/downloads/#jdk21-windows https://www.oracle.com/java/technologies/downloads/archive/ 2、maven下载安装 阅读全文