最新发布第3页
排序
podman安装阿里sentinel组件
podman pull bladex/sentinel-dashboard; podman run -d \ --name sentinel \ -p 8858:8858 \ bladex/sentinel-dashboard; 打开web控制台,默认账号密码都是'sentinel'。
java解析html
HtmlUnit官网: https://www.htmlunit.org/
正向代理Squid
官网:https://www.squid-cache.org/ Anolis安装squid正向代理: dnf install squid 修改squid配置文件: vi /etc/squid/squid.conf
使用Nginx作为正向代理服务
参考: 使用NGINX作为HTTPS正向代理服务器 nginx正向代理配置详解
拉取docker镜像推送到阿里云仓库
github项目: https://github.com/aopkcn/docker-pull
Podman REST API
官方文档: https://docs.podman.io/en/latest/_static/api.html?version=v5.0 开启unix套接字: podman --log-level=debug system service -t0 unix:///tmp/podman.sock 开启TCP套接字: podman ...
离线安装VisualStudio 2022
参考: 在离线单机或内网环境中快速安装Visual Studio 2022并还原用户设定
docker镜像国内无法拉取?
镜像加速:https://do.nark.eu.org https://github.com/DaoCloud/public-image-mirror
Spring整合RabbitMQ延迟队列
RabbitMQ插件下载:https://www.rabbitmq.com/community-plugins.htmlrabbitmq_delayed_message_exchange 插件安装:docker cp rabbitmq_delayed_message_exchange-3.13.0.ez rabbitmq:/plugins...
分布式 SQL 查询引擎Trino
官网:https://trino.io/ GitHub:https://github.com/trinodb/trino 参考: Trino概述
Spring Cloud Alibaba AI
参考: 快速体验 Spring Cloud Alibaba AI
卡券系统设计
参考: 优惠券系统从入门到精通(一) 优惠券系统从入门到精通(二) 优惠券系统从入门到精通(三) 优惠券系统从入门到精通(四) 优惠券系统从入门到精通(五) 优惠券系统从入门到精通(六)
苹果MacOS磁盘克隆工具
Carbon Copy Cloner 官网:https://bombich.com/
Java播放midi
官方Demo: https://www.oracle.com/java/technologies/java-sound-demo.html B站视频: 【Java音乐编程 入门教程】 https://www.bilibili.com/video/BV1nQ4y1p75C
免费开源文本转语音ChatTTS
ChatTTS 一键安装包下载:https://www.freedidi.com/12621.html
Java与函数式编程
参考: Java函数式编程
数据库迁移工具
liquibase 在线文档:https://docs.liquibase.com/home.html
Java常用组件版本兼容问题
logback: JDK 8 兼容版本:1.3.14
nimble projects for java
https://gitee.com/joy-code/nimble-maven.git https://gitee.com/joy-code/nimble-demo.git
podman安装opensearch
opensearch: podman run -d \ --name opensearch \ -p 9200:9200 \ -p 9600:9600 \ -e 'discovery.type=single-node' \ -e 'plugins.security.disabled=true' \ -e 'network.host=0.0.0.0' \ do...