最新发布第2页
排序
龙蜥Anolis OS安装python 3
安装命令:dnf install python38启动python环境:python3
QNAP NAS安装第三方应用
Name : MyQNAPURL : https://www.myqnap.org/repo.xmlhttps://www.myqnap.org/install-the-repo/
maven打包git信息
引入maven插件:<plugin> <groupId>pl.project13.maven</groupId> <artifactId>git-commit-id-plugin</artifactId> <version>${git-commit-id-plugin.vers...
Shell使用等于进行字符串的比较,总是返回true
解决方法:字符串两边加引号等号两边加空格
开源java组件
material-ui-swinghttps://github.com/atarw/material-ui-swingSystemTray:https://github.com/dorkbox/SystemTray
JavaFX组件
TilesFxgithub:https://github.com/HanSolo/tilesfx
podman安装keepalived
主节点:192.168.56.11备节点:192.168.56.12虚拟IP:192.168.56.10启动主节点:podman run -d \ --name keepalived \ --net=host \ -e KEEPALIVED_INTERFACE='ens160' \ -e KEEPALIVED_PRIORIT...
IM即时通讯系统开发
网易云信:https://yunxin.163.com/MobileIMSDKhttps://gitee.com/jackjiang/MobileIMSDK参考:如何快速开发一个IM系统
电商直播技术服务商
即构https://www.zego.im/
nacos配置动态刷新
参考:如何实现Nacos配置文件动态刷新【四种方式】naocs RefreshScope 不生效 @refreshscope 无效nacos解决shared-configs下的共享配置文件无法实时更新
SpringBoot跨域设置问题
跨域如下设置报错:@Configuration public class CorsConfig extends WebMvcConfigurerAdapter { @Override public void addCorsMappings(CorsRegistry registry) { registry.addMapping('/**')...
SpringBoot集成Springfox/Swagger的问题
参考:解决Failed to start bean ‘documentationPluginsBootstrapper‘; nested exception is java.lang.NullPointerspringboot2.6.7集成springfox3.0.0swagger文档无法访问
SpringBoot集成Swagger的问题
参考:解决Failed to start bean ‘documentationPluginsBootstrapper‘; nested exception is java.lang.NullPointer
nvm的linux安装脚本
#!/usr/bin/env bash { # this ensures the entire script is downloaded # nvm_has() { type '$1' > /dev/null 2>&1 } nvm_echo() { command printf %s\\n '$*' 2>/dev/null } if...
docker安装nexus3
参考:使用Docker搭建本地Nexus私有仓库Nexus3最佳实践系列:搭建Docker私有仓库
podman国内无法拉取镜像的解决办法
加速站点:https://do.nark.eu.org/使用镜像加速:vi /etc/containers/registries.conf修改如下地方:unqualified-search-registries = ['do.nark.eu.org']其它:docker.m.daocloud.io
Spring Boot 自动启动Shell脚本
#!/usr/bin/bash # 获取执行路径 APP_DIR=$( cd $( dirname $0 );pwd ); # 查找jar包文件 BOOT_JAR_PATH=$(find ${APP_DIR} -type f -name *.jar); BOOT_JAR=$(basename $BOOT_JAR_PATH); # 获...
linux不同用户使用不同的java版本
vi ~/.bashrc设置环境变量:export JAVA_HOME=/usr/lib/jvm/java-8 export PATH=$JAVA_HOME/bin:$PATH刷新:source ~/.bashrc
编译安装glibc
下载对应版本: https://ftp.gnu.org/gnu/glibc/ mkdir build; cd build; ../configure --prefix=/usr --disable-profile --enable-add-ons --with-headers=/usr/include --with-binutils=/usr/...
docker无法拉取镜像的解决办法:
执行下面命令添加镜像站点: sudo mkdir -p /etc/docker sudo tee /etc/docker/daemon.json <<EOF { 'registry-mirrors': [ 'https://docker.fxxk.dedyn.io', 'https://huecker.io', 'htt...