摘要:
public class RestClient { private string BaseUri; public RestClient(string baseUri) { this.BaseUri = baseUri; } #region Delete方式 public string HttpDel 阅读全文
摘要:
开发环境:Win10 + VS2019Mysql服务器版本:5.7.33 (mysql版本5.7以上) 5.7以下不支持.net core 1、在.NET CORE 项目中添加以下包: Microsoft.EntityFrameworkCore.Tools; Microsoft.EntityFram 阅读全文
摘要:
//密码复杂度正则表达式 var regex = new Regex(@" (?=.*[0-9]) #必须包含数字 (?=.*[a-zA-Z]) #必须包含小写或大写字母 (?=([\x21-\x7e]+)[^a-zA-Z0-9]) #必须包含特殊符号 .{8,30} #至少8个字符,最多30个字符 阅读全文
摘要:
1、安装 Toolbox 最新版 Toolbox 下载地址: https://www.docker.com/get-docker 点击 Download Desktop and Take a Tutorial,并下载 Windows 的版本,如果你还没有登录,会要求注册登录: 2、运行安装文件 双击 阅读全文
摘要:
缓存依赖关联文本文件 阅读全文
摘要:
public void Subscribe(Action action) { SubscriberSocket sub = null; try { var setting = new AppSetting(); using (su... 阅读全文
摘要:
1、生产者 package com.ys.ps; import com.rabbitmq.client.Channel;import com.rabbitmq.client.Connection;import com.ys.utils.ConnectionUtil; /** * Create by 阅读全文
摘要:
package com.test; import java.security.KeyFactory; import java.security.KeyPair; import java.security.KeyPairGenerator; import java.security.NoSuchAlgorithmException; import java.security.PrivateKey... 阅读全文