学习地址:https://www.bilibili.com/video/BV1mf4y1S72o?p=11 实例练习一 using System; using System.Collections.Generic; using System.Linq; using System.Text; usin ...
分类:
其他好文 时间:
2020-07-11 21:22:24
阅读次数:
136
参考地址:https://www.shangmayuan.com/a/59d7536bdeb643e5bd82404b.html 一.安装OpenLDAP yum install openldap openldap-clients openldap-servers 安装完直接启动 ``` syste ...
分类:
其他好文 时间:
2020-07-11 19:38:31
阅读次数:
49
AddDbContext 是单例模式的作用域,需要通过 using (var scope = _scopeFactory.CreateScope()) //剔除单例模式的Context问题。 { var wallContext = scope.ServiceProvider.GetRequiredS ...
分类:
数据库 时间:
2020-07-11 09:27:06
阅读次数:
190
/** * 中断当前线程; * * 如果这个线程被wait(), join(), sleep()所阻塞, * 那么线程的中断状态将被清除,同时,会抛出一个InterruptedException; * * <p> If this thread is blocked in an invocation ...
分类:
其他好文 时间:
2020-07-10 17:17:49
阅读次数:
75
平台项目管理规范(Go语言版本) 1 编码规范 go版本 go1.13.4 开发环境 linux/mac/windows git版本 2.7.3+ 是否需要go fmt 需要 是否需要代码检查 需要 是否需要golint 需要 是否需要本地自测 需要 是否需要go mod tidy && go mo ...
分类:
其他好文 时间:
2020-07-10 15:19:56
阅读次数:
81
[HttpGet] public IActionResult GetFile(string filepath) { if (string.IsNullOrEmpty(filepath)) filepath = "D:\\ABC.log"; var provider = new FileExtensi ...
分类:
Web程序 时间:
2020-07-09 17:56:05
阅读次数:
83
SPI全称Service Provider Interface,面向接口编程,是Java提供的一套用来被第三方实现或者扩展的接口,它可以用来启用框架扩展和替换组件。关于spi思想的的介绍详情请百度。以下是利用spi思想的一个小例子。 步骤一:新建一个java项目,本项目是在新建了一个java web ...
分类:
编程语言 时间:
2020-07-09 01:15:35
阅读次数:
103
<Table class="table" :columns="columns1" :data="tableData" highlight-row :max-height="500" border @on-selection-change="onSelectionChange" @on-row-cli ...
分类:
其他好文 时间:
2020-07-08 19:36:41
阅读次数:
281
Dubbo教程 一. Dubbo简介 Dubbox 是一个分布式服务框架,底层采用netty通信,服务之间通过rpc调用 节点角色说明 节点 角色说明 Provider 暴露服务的服务提供方 Consumer 调用远程服务的服务消费方 Registry 服务注册与发现的注册中心 Monitor 统计 ...
分类:
其他好文 时间:
2020-07-08 15:31:52
阅读次数:
55
dubbo的spi机制源码流程 1.0 源码解读见dubbo官网:http://dubbo.apache.org/zh-cn/docs/source_code_guide/dubbo-spi.html 1.1 SPI 全称为 Service Provider Interface,是一种服务发现机制。 ...
分类:
其他好文 时间:
2020-07-08 15:01:11
阅读次数:
55