加载中
jupyter notebook 单独安装

conda install notebook 执行命令 jupyter notebook 在 jupyter notebook 中打开 python3 文件报错 500 : Internal Server Error 查看 nbconvert 包版本 pip list | grep nbconvert nbconver...

05/24 20:58
57
jupyterlab 安装

conda install jupyterlab 为 jupyter lab 增加 当前虚拟环境 pip list | grep ipykernel ipykernel 6.19.2 ipython kernel install --name 环境名称 --user 安装代码补全功能 conda instal...

05/24 20:56
113
Validator 校验框架使用总结

Validator 校验框架 1. 概念总结 1. 注解: 增加 @Constraint(validatedBy = DictValidator.class) ,指定校验类,这里指定字典校验类 2. 校验类: 实现接口 implements ConstraintValidator<D...

2022/12/15 20:12
136
MAC 安装 iterm2,支持 sz rz

(1) 下载 iterm2 https://iterm2.com/downloads.html (2) MAC本地安装 lrzsz brew install lrzsz (3) 下载 iterm2-zmodem https://github.com/aikuyun/iterm2-zmodem (4) 将sh文件,拷贝到 ...

2022/10/21 15:16
142
Springboot 上传文件到 Minio

docker 安装 MINIO 1. 执行命令 # 创建数据目录 mkdir -p /home/xxxx/xxxx/minio/data 执行容器 sudo docker run -p 9000:9000 -p 9090:9090 --name minio -d --restart=always -v /......

2022/10/21 13:36
987
SpringBoot 国际化

国际化 1. 配置国际化文件路径 # application.yml spring: messages: basename: i18n/messages 国际化文件路径在 resource/i18n/messages.properties resource/i18n/messages_zh.properties...

Java采集服务端信息

<!-- 获取内存等 --> <!-- https://mvnrepository.com/artifact/com.github.oshi/oshi-core --> <dependency> <groupId>com.github.oshi</groupId> <artifactId>os......

2022/02/23 11:44
363
内网搭建代理DNS服务

## 1. 创建配置文件 ### 1.1 在宿主机建立 /root/dev/dns-server 目录,创建 代理文件 resolv.dns 和 本地解析规则配置文件 dnshosts #### 1.1.1 代理文件 resolv.dns 内容: ``` nameserver ...

2021/11/24 10:25
87
项目启动时出现 An illegal reflective access operation has occurred

## 启动时,出现Warning WARNING: An illegal reflective access operation has occurred WARNING: Illegal reflective access by com.google.inject.internal.cglib.core.$ReflectUtils$1 ...

Apollo Docker 搭建测试

Apollo Docker 搭建 1.1 简介 核心模块 Client 客户端 Config Service 配置的读取、推送,和客户端通讯、交互 Admin Service 在Portal上对配置的修改、发布 Portal 配置管理界面 辅助模块 Eu...

2021/09/20 18:58
65
Gitea Docker安装及注意事项

GITEA Docker安装 安装并启动 docker pull gitea/gitea docker run -d --privileged=true --restart=always --name=gitea -p 10022:22 -p 8083:3000 -v /data:/data gitea/gitea:latest 启动...

git
2021/09/20 00:15
45
通过反向代理,搭建 springcloud-nacos 微服务远程和本机相结合的联调开发环境

# 在本地建立隧道反向代理,将远端端口 9202 映射到 本机的 9202 ssh -vnNT -R 0.0.0.0:9202:localhost:9202 root@{remote-ip} # 在远端测试: nc -v 127.0.0.1 9202 curl -X GET 127.0.0.1:...

2021/04/04 19:04
513
MAC M1 安装nvm 与新版本 nodejs

GITHUB 地址: https://hub.fastgit.org/nvm-sh/nvm/releases 1、安装 nvm,用于安装多node版本 # 确认这些文件是否存在 ~/.bash_profile, ~/.zshrc, ~/.profile, ~/.bashrc 如果不存在需要新...

2021/03/25 14:17
8.8K
Nacos-server 使用 Mysql 存储

1、下载 nacos-server github 下载慢,可以用镜像站: https://github.com.cnpmjs.org/ https://github.wuyanzheshui.workers.dev/alibaba/nacos/releases/tag/1.4.1 https://hub.fastgit.or...

2021/03/24 14:59
573

没有更多内容

加载失败,请刷新页面

返回顶部
顶部