什么是MediatR 项目地址:https://github.com/jbogard/MediatR Simple mediator implementation in .NET In-process messaging with no dependencies. Supports request/ ...
分类:
其他好文 时间:
2020-06-17 01:35:56
阅读次数:
124
今天被问到 mongodb,centos 7.6的自启动,报错 Jun 16 11:34:39 localhost rc.local: ERROR: child process failed, exited with error number 1 Jun 16 11:34:39 localhost ...
分类:
数据库 时间:
2020-06-16 18:30:54
阅读次数:
134
1. 僵尸进程 如果一个进程已经终止,但是它的父进程尚未调用 wait() 或 waitpid() 对它进行清理,这时的进程状态称为僵死状态,处于僵死状态的进程称为僵尸进程(zombie process)。任何进程在刚终止时都是僵尸进程,正常情况下,僵尸进程都立刻被父进程清理了。如果父进程先退出 , ...
分类:
系统相关 时间:
2020-06-16 15:30:00
阅读次数:
50
正则表达式这道题对我来说是真的难,花了两天的时间才做出来。 做这道题首先需要注意的是点号`.`可以匹配任何字符,字符加星号`*`表示零个或者多个该字符,例如a*表示零个或者多个a,所以对于正则表达式中,后面不跟*的字符,在字符串s中必须找到对应的字符,对于正则表达式中后面跟*的字符,则可以不必找到对 ...
分类:
其他好文 时间:
2020-06-16 15:15:59
阅读次数:
55
Several ports (8005, 8080, 8009) required by Tomcat v7.0 Server at localhost are already in use. The server may already be running in another process, ...
分类:
其他好文 时间:
2020-06-16 14:41:14
阅读次数:
63
import Vue from 'vue' Vue.mixin({ computed: { APP_ID() { return process.env.APP_ID }, }, }) ...
分类:
其他好文 时间:
2020-06-16 13:11:43
阅读次数:
45
官方解释:process 对象是一个 global (全局变量),提供有关信息,控制当前 Node.js 进程。作为一个对象,它对于 Node.js 应用程序始终是可用的,故无需使用 require()。 process(进程)其实就是存在nodejs中的一个全局变量。然后呢,咱们可以通过这个所谓的 ...
分类:
其他好文 时间:
2020-06-16 13:10:22
阅读次数:
66
#sonarque root启动报错 cat /usr/local/sonarqube/logs/sonar.log #查看日志 WrapperSimpleApp: Encountered an error running main: java.nio.file.AccessDeniedExcept ...
分类:
其他好文 时间:
2020-06-16 00:58:07
阅读次数:
70
查看wmic process where caption="java.exe" get processid,caption,commandline /value 删除taskkill /pid 进程id/F ...
分类:
编程语言 时间:
2020-06-15 19:27:06
阅读次数:
59
// remote06.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include "windows.h" BOOL func(DWORD ProcessID,char* Dll ...
分类:
编程语言 时间:
2020-06-15 19:20:49
阅读次数:
68