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
The GetModuleBaseName function retrieves the base name of the specified module.DWORD GetModuleBaseName(HANDLE hProcess, // handle to processHMODULE hM ...
分类:
其他好文 时间:
2020-06-15 17:25:04
阅读次数:
55
nginx基础概念(100%) connection¶ 在nginx中connection就是对tcp连接的封装,其中包括连接的socket,读事件,写事件。利用nginx封装的connection,我们可以很方便的使用nginx来处理与连接相关的事情,比如,建立连接,发送与接受数据等。而nginx ...
分类:
其他好文 时间:
2020-06-15 15:50:13
阅读次数:
45
版本:QT5.2, Windows10 操作系统 1. 如果只在计算机上安装了VS2015,那么下图所示的MSVC2015的编译器图标会是一个黄色的感叹号,,Debuggers页面没有Windows的CDB调试器,此时可以用MSVC编译器对Qt Creator编写的程序进行编译,但是不能调试,这是因 ...
分类:
数据库 时间:
2020-06-15 13:41:43
阅读次数:
79
lock和Monitor的区别 lock的底层本身是Monitor来实现的,所以Monitor可以实现lock的所有功能。 Monitor有TryEnter的功能,可以防止出现死锁的问题,lock没有。 Mutex和其他两者的区别 Mutex本身可以实现lock和Monitor所有的操作。 但是Mu ...
分类:
其他好文 时间:
2020-06-15 00:04:17
阅读次数:
74