GET GET单参数 服务器 [OperationContract] string GetOneParameter(string value); [WebInvoke(Method = "GET", UriTemplate = "GetOneParameter/{value}", ResponseF ...
分类:
其他好文 时间:
2021-06-30 18:18:42
阅读次数:
0
#!/usr/bin/env bash __Author__="liy" # 发送钉钉告警 function DingDing(){ curl 'https://oapi.dingtalk.com/robot/send?access_token=xxxxxxxxxxxxxxxxxxxxxxxxxxx ...
分类:
其他好文 时间:
2021-06-30 18:14:38
阅读次数:
0
命令行模式 定义:将一个请求封装为一个对象,使发出的请求的对象和执行请求的对象分割开。这两者之间通过命令对象进行沟通,这样方便将命令对象进行储存、传递、调用、增加与管理。 顺序:请求者->命令->执行者 优点: 降低系统耦合度 扩展性好,增加或删除命令不会影响其他类 方便实现Undo和Redo操作, ...
分类:
其他好文 时间:
2021-06-30 18:05:13
阅读次数:
0
springcloud框架项目目录结构 项目使用的其他软件说明 项目使用的其他软件,比如redis,nacos,mysql,rabbitmt,emqx,nexus等都是外置的,不部署到k8s中 流程示意图 编写Dockerfile文件 需要在项目每个模块的根目录下编写Dockerfile文件 Doc ...
分类:
编程语言 时间:
2021-06-30 17:39:23
阅读次数:
0
/// <summary> /// 获取文件的编码格式 /// </summary> public class EncodingType { /// <summary> /// 给定文件的路径,读取文件的二进制数据,判断文件的编码类型 /// </summary> /// <param name=“ ...
一、下载dbase组件,我下载的是5.1.1版本:https://pecl.php.net/get/dbase-5.1.1.tgz 如果需要安装其它版本,可以在这个页面下载:https://pecl.php.net/package/dbase 二、执行安装命令 # tar -xvzf dbase-5 ...
分类:
数据库 时间:
2021-06-29 16:02:49
阅读次数:
0
微信小程序报错:Cannot read property ‘forceUpdate‘ of undefined ...
分类:
微信 时间:
2021-06-29 15:38:13
阅读次数:
0
Dim DelegetSub1 As testDelegetSub = New testDelegetSub(AddressOf testDelegateSub2) Dim DelegetSub2 As testDelegetSub = New testDelegetSub(AddressOf te ...
分类:
其他好文 时间:
2021-06-28 21:10:35
阅读次数:
0
direct(current time and current queue number, 25 queue number equals 1 minute) reverse(target time and current queue number, 25 queue number equals 1 ...
分类:
其他好文 时间:
2021-06-28 21:06:27
阅读次数:
0
WPF的设计理念是:数据驱动,UI与逻辑松耦合 一、传统的CLR属性 public class Person { private string _Name; public string Name { get { return _Name; } set { _Name = value; } } } 二 ...