org.springframework.context.ApplicationContextException: Unable to start EmbeddedWebApplicationConte 分类专栏: springcloud 文章标签: springcloud 版权 16:53:35.0 ...
分类:
移动开发 时间:
2021-01-15 11:57:16
阅读次数:
0
有时Tomcat的启动窗口一闪而过,根本就看不出启动过程中发生了什么错误。这中间的原因有好多种,最常见的解决办法就是使用run命令,打开startup.bat文件,找到下面这行: call "%EXECUTABLE%" start %CMD_LINE_ARGS% 修改为: call "%EXECUT ...
分类:
其他好文 时间:
2021-01-15 11:45:28
阅读次数:
0
1、检查防火墙是否开放22端口 2、检查ssh是否安装 rpm -qa |grep ssh sudo apt-get install rpm sudo apt-get install ssh sudo service ssh restart 连接成功 安装ssh 参考: https://blog.c ...
分类:
系统相关 时间:
2021-01-14 11:27:11
阅读次数:
0
目标 线程的生命周期 线程的状态定义 线程的状态转移 内容 1. 线程的生命周期说明 上一篇文章中,我们简单的描述了同步与异步的差异以及线程的基本使用。那么今天我们就来了解一下线程的生命周期。 在调用了 Thread 类对象的 start 方法来启动 Java 线程后,对应的底层操作系统线程不能马上 ...
分类:
编程语言 时间:
2021-01-14 11:15:13
阅读次数:
0
学习自:https://www.cnblogs.com/blackmanzhang/p/12677538.html [root@vmcentos7-1 ~]#vim /etc/yum.repos.d/mongodb-org-4.2.repo [mongodb-org-4.2]name=MongoDB ...
分类:
数据库 时间:
2021-01-14 10:53:10
阅读次数:
0
from threading import Thread from time import sleep a = 1 def foo(): global a a = 1000 def bar(): sleep(1) print("a = ",a) t1 = Thread(target = foo) t ...
分类:
编程语言 时间:
2021-01-13 10:50:50
阅读次数:
0
go安装 下载安装包 go下载: 下载地址:https://golang.google.cn/dl/ lazydocker下载: 下载地址:wget https://github.com/jesseduffield/lazydocker/releases/download/v0.2.4/lazydo ...
分类:
其他好文 时间:
2021-01-13 10:48:49
阅读次数:
0
创建windows服务 新建xx.cmd文件,在文件中添加以下内容 sc create DataUploadServer binPath= "%~dp0%DataUploadServer.exe" @net start DataUploadServer :: @sc config DataUploa ...
{PASCAL INTERFACE for AVICAP32 DLL} {Converted from microsoft Header file by ArTee} {Free to use - I'm NOT responsible fo bugs} unit avicap32; interfa ...
228. 汇总区间 分类: 数组 简单题,但是边界条件挺细节,特别是c++,还要额外注意int的边界,不然 nums[i] == nums[i-1] + 1会overflow class Solution { public: vector<string> summaryRanges(vector<i ...
分类:
其他好文 时间:
2021-01-12 11:07:54
阅读次数:
0