摘要:
官网:https://nlog-project.org 配置文件:https://raw.githubusercontent.com/NLog/NLog/dev/src/NuGet/NLog.Config/content/NLog.config framework环境下 1、安装 2、将配置文件下载 阅读全文
摘要:
官方地址:https://apiumbrella.io 一、 Linux系统安装限制: CentOS / RedHat / Oracle / Scientific Linux 系统版本限制:6或7(本文安装环境是CentOS 7) 一、 安装: 1. 发起网络请求,下载软件安装配置文件并将其写入指定 阅读全文
摘要:
1、文件操作: 打开:vim 文件名 预览:cat 文件名 下载:wget(路径中把https改成http) 解压:tar -xvf 压缩包 -C 目标文件夹 移动:mv 对象文件 目标路径 复制:cp 对象文件 目标路径 编辑:i开始编辑,ESC退出编辑,: wq保存并退出,: q!不保存退出,s 阅读全文
摘要:
错误1:Command 'ifconfig' not found, but can be installed with:apt install net-tools sudo apt install net-tools 错误2:Command 'firewall-cmd' not found, but 阅读全文
摘要:
1.直接下载稳定安装包,官网:https://nginx.org/en/download.html 直接运行下载命令: wget -c http://nginx.org/download/nginx-1.18.0.tar.gz 注:确保系统已经安装了wget,如果没有安装,执行 yum instal 阅读全文
摘要:
FrameWork 添加引用 勾选输出xml 添加配置(这样就会在页面上显示参数说明) c.IncludeXmlComments($"{System.AppDomain.CurrentDomain.BaseDirectory}/bin/swagget.xml"); 直接运行,地址后加入swagger 阅读全文
摘要:
1、pom.xml添加配置 <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger2</artifactId> <version>2.9.2</version> </dependency> <depende 阅读全文
摘要:
1、首先创建一个maven项目,“File”-“New”-“Maven Project” 2、直接下一步,使用默认空间即可 3、选择maven-archetype-quickstart,next 4、填写Group Id、Artifact Id,一般来说它们分别对应公司名、项目名。直接Finish 阅读全文
摘要:
MERGE INTO table_name t1 USING (SELECT * FROM table_name) t2 ON t1.column= t2.columnWHEN MATCHED THEN UPDATE SET t1.col1 = t2.col1, t1.col2 = t2.col2 阅读全文
摘要:
DECLARE @idoc int DECLARE @doc varchar(1000) set @doc=N'<ROOT> <Customer CustomerID="VINET" ContactName="Paul Henriot"> <Order OrderID="10248" Custome 阅读全文