1.简介 RestFul API文档在线自动生成工具 => API文档与API定义同步更新 直接运行,可以在线测试API接口 2.在项目使用Swagger需要springfox swagger2 ui 3.SpringBoot集成Swagger2 在pom.xml中导入依赖 <!-- https:/ ...
分类:
其他好文 时间:
2021-06-18 20:07:05
阅读次数:
0
前言 最近一直想在家里弄个服务器,苦于(贫穷)没有想好能用来做哪些事情,经过一番调研下来,发现有个叫做“软路由”的新名词,于是就研究了一下。经过这几天的一番折腾大概知道这玩意儿应该怎么玩了,写个教程记录一下。 正巧最近是618时间,可能会趁此机会淘一些E3、E5之类的处理器,搭配一个小主板,自己组一 ...
分类:
其他好文 时间:
2021-06-17 17:06:51
阅读次数:
0
关机&&重启 shutdown ``` //立即关机 shutdown -h now //一分钟后关机 shutdowm -h 1 //立即重启 shutdown -r now ``` halt:直接使用,关机 reboot:重启系统 sync:把内存的数据同步到磁盘 不管是重启还是关机,首先运行s ...
分类:
系统相关 时间:
2021-06-17 17:04:22
阅读次数:
0
#include <stdio.h> #include <string.h> #include <stdint.h> #include <errno.h> #include <sys/queue.h> #include <rte_launch.h> #include <rte_eal.h> #inc ...
分类:
其他好文 时间:
2021-06-17 16:28:03
阅读次数:
0
前言 起因是学习 crazyflie 的代码中出现 **__ sync_fetch_and_add ** 这个操作比较好奇,查阅后发现 __sync_fetch_and_add 有一些列的操作函数用于实现原子操作 **fetch **是先返回然后再进行 add 操作 其他同类型的原子操作函数,gcc ...
分类:
其他好文 时间:
2021-06-16 18:05:50
阅读次数:
0
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Net.Sockets; using Sy ...
分类:
其他好文 时间:
2021-06-16 18:02:41
阅读次数:
0
删除、卸载 sudo rm /etc/apt/sources.list.d/cuda* sudo apt-get --purge remove "*cublas*" "cuda*" "nsight*" sudo apt-get --purge remove "*nvidia*" sudo apt-g ...
分类:
其他好文 时间:
2021-06-16 17:58:13
阅读次数:
0
上传安装系统的ISO镜像文件到/root目录下 创建挂载目录 mkdir -p /yum/local 挂载iso到目录 注意修改iso文件操作权限为755 mount -o loop /root/centos1908.iso /yum/local/ 检查挂载 df –h 新建repo文件 vi /e ...
分类:
其他好文 时间:
2021-06-16 17:39:48
阅读次数:
0
使用helm快速部署应用 第一步 使用命令搜索应用 helm search repo 名称 (weave) 第二步 根据搜索内容选择安装 helm install 安装之后的名称 搜索应用的名称 ? 查看安装之后状态 helm list helm status 安装之后名称 ? [root@mast ...
分类:
Web程序 时间:
2021-06-13 09:34:42
阅读次数:
0
ArrayList注意事项(可以放入null,且可以多个null) package com.model.list; import java.util.ArrayList; import java.util.List; /** * @Description:测试类 * @Author: 张紫韩 * @ ...
分类:
编程语言 时间:
2021-06-13 09:29:29
阅读次数:
0