1. tomcat下载、解压 2. tomcat解压后目录 bin——存放可执行文件, startup.bat, shutdown.bat conf——配置文件server.xml lib——tomcat依赖的jar包文件 log——日志文件 temp——临时文件 webapps——可执行项目 wo ...
分类:
编程语言 时间:
2020-05-21 13:18:11
阅读次数:
66
前言 "译自 [openssl.org 官方英文文档" ] 注意:本文只提供相关函数的说明、定义、参数、返回值、注释等的简单翻译,对于更多信息、疑问或错误之处,请阅读原英文文档。 函数 SSL_library_init() 名称 概要 描述 SSL_library_init()注册可用的SSL / ...
分类:
其他好文 时间:
2020-05-19 16:40:43
阅读次数:
63
1、在引入一个第3方依赖后执行package get后长时间提示该语句: Waiting for another flutter command to release the startup lock 删除flutter SDK 下的/bin/cache/lockfile文件 重启Android S ...
分类:
其他好文 时间:
2020-05-18 22:53:35
阅读次数:
82
这里推荐是本人常用指令! 用户操作: whoami 查看当前登录用户 useradd 用户名 passwd 用户名 , 按照提示设置密 usermod 修改用户名 userdel 用户名 su 切换登录用户 groupadd 注:添加用户组; groupdel 注:删除用户组; groupmod 注 ...
分类:
系统相关 时间:
2020-05-18 00:25:11
阅读次数:
86
1:notify()作用:唤醒一个在对象上等待的线程,使其从wait()方法返回,而返回的前提是该线程获取到了对象的锁。2:notifyAll()作用:唤醒所有等待在该对象上的线程。3:wait()作用:调用该方法的线程进入WAITING状态,只有等待另外线程的通知或被中断才会返回,需要注意,调用w... ...
分类:
其他好文 时间:
2020-05-14 15:27:15
阅读次数:
55
Visual Studio is waiting for an operation to complete. If you regularly encounter this delay during normal usage please report this problem to Microso ...
分类:
其他好文 时间:
2020-05-14 12:51:58
阅读次数:
108
@[toc] 接上一篇文章: "上一篇" 53、线程基本方法 线程相关的基本方法有 wait, notify, notifyAll, sleep, join, yield 等。 54、线程等待(wait) 调用该方法的线程进入 WAITING 状态,只有等待另外线程的通知或被中断才会返回,需要注意的 ...
分类:
编程语言 时间:
2020-05-13 20:11:43
阅读次数:
68
参考:https://www.jianshu.com/p/154c82073b07 依赖: <dependency> <groupId>net.sf.ehcache</groupId> <artifactId>ehcache</artifactId> <version>2.10.2</version ...
分类:
系统相关 时间:
2020-05-12 20:50:59
阅读次数:
137
题目 Suppose a bank has K windows open for service. There is a yellow line in front of the windows which devides the waiting area into two parts. All th ...
分类:
其他好文 时间:
2020-05-12 14:14:19
阅读次数:
70
1、数据备份 SAVE 同步保存数据到硬盘 BGSAVE 在后台异步保存当前数据库的数据到磁盘,将在 redis 安装目录中创建dump.rdb文件 SHUTDOWN [NOSAVE] [SAVE] 异步保存数据到硬盘,并关闭服务器 LASTSAVE 返回最近一次 Redis 成功将数据保存到磁盘上 ...
分类:
其他好文 时间:
2020-05-11 23:42:35
阅读次数:
64