using System; namespace EventDelegation { /// <summary> /// 事件参数类 /// </summary> public class EventDate : EventArgs { public int eventID; public int a ...
场景 jar包在本地Windows系统上运行不报错,在CentOS服务器上运行时提示: org.quartz.SchedulerException: Couldn't get host name 注: 博客: https://blog.csdn.net/badao_liumang_qizhi 关注公 ...
分类:
编程语言 时间:
2021-04-27 14:23:18
阅读次数:
0
安装CentOS 6.8使用yum命令报错 使用四条命令,就可以正常使用yum了 sed -i "s|enabled=1|enabled=0|g" /etc/yum/pluginconf.d/fastestmirror.conf curl -o /etc/yum.repos.d/CentOS-Bas ...
分类:
其他好文 时间:
2021-04-26 13:13:52
阅读次数:
0
Loaded plugins: fastestmirror, langpacks Could not retrieve mirrorlist http://mirrorlist.centos.org/?release=7&arch=x86_64&repo=os&infra=stock error w ...
分类:
Web程序 时间:
2021-04-24 13:53:03
阅读次数:
0
1 生命周期解释 初始化阶段: beforeCreate(){//执行该函数时,Vue实例仅仅完成了生命周期的初始化,Vue实例中还没有el、data、methods相关属性 console.log("beforeCreate: " + this.msg); }, created(){//该函数在执 ...
分类:
其他好文 时间:
2021-04-24 13:47:19
阅读次数:
0
https://www.cnblogs.com/cnsdhzzl/p/12586711.html 参考地址 安装有趣的命令sl(跑火车) 1.更新yum源 yum -y update 2.尝试安装sl yum install sl 执行yum命令时会去centos镜像查找sl包,但是镜像中没有sl包 ...
分类:
其他好文 时间:
2021-04-24 13:20:13
阅读次数:
0
let staytimeGap = new Date(closedtime).getTime() - new Date(createtime).getTime(); let stayHour = Math.floor(staytimeGap / (3600 * 1000)); let leave1 ...
分类:
其他好文 时间:
2021-04-24 11:48:09
阅读次数:
0
//php获取指定范围内的日期 function periodDate($startDate, $endDate) { $startTime = strtotime($startDate); $endTime = strtotime($endDate); $arr = []; while ($sta ...
分类:
Web程序 时间:
2021-04-23 12:27:28
阅读次数:
0
function backToTop () { cancelAnimationFrame(timer); // 获取当前毫秒数 const startTime = Date.now(); // 获取当前页面的滚动高度 const scrollTop = document.body.scrollTop ...
分类:
其他好文 时间:
2021-04-23 12:07:09
阅读次数:
0
1、测试1 [root@centos7 test2]# i=0 [root@centos7 test2]# max=5 [root@centos7 test2]# while((i<max));do echo $i;((i++));done 0 1 2 3 4 ...
分类:
系统相关 时间:
2021-04-23 12:03:54
阅读次数:
0