场景 无论生产还是测试中,只要你项目嗖的一下子跑起来了,就会产生相关运行的catalina.out日志文件。我觉得看到这篇文章的人,都是过来学习怎样开启定时任务来清理tomcat日志的,下面呢,就给大家具体说下吧 Coding centos版本:6.8 1.首先进入到linux tomcat的/lo ...
分类:
系统相关 时间:
2020-03-20 15:35:58
阅读次数:
124
1.需要的jar如下: !-- log4j --> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.17</version> </dependency> <dependency> <g ...
分类:
其他好文 时间:
2020-03-10 11:53:28
阅读次数:
66
1、强制等待:sleep() from time import sleep sleep(3) #等待3秒 ****官方不推荐这样的方法,使用太多的sleep会影响脚本运行速度 2、隐式等待:implicitly_wait() driver.implicitly_wait(10) #隐式等待10秒 由 ...
分类:
Web程序 时间:
2020-03-06 10:43:06
阅读次数:
100
有时候,我们希望通过身份证来计算出年龄,那么下面我写的函数很适合。 实现代码中已有详细注释。 function getAge($id){ # 1.从身份证中获取出生日期$id = $id;//身份证$birth_Date = strtotime(substr($id, 6, 8));//截取日期外汇 ...
分类:
Web程序 时间:
2020-02-25 20:19:00
阅读次数:
144
如今,当谈到 WPF 时,我们言必称 MVVM、框架(如 Prism)等,似乎已经忘了不用这些的话该怎么使用 WPF 了。当然,这里说的不用框架和 MVVM,并不是说像使用 Winform 那样使用 WPF,而是追本溯源,重识 WPF 与生俱来的绑定和命令的风采。 ...
本文是2020年第14篇原创文章,也是汪子熙公众号总共第197篇原创文章。 今天这篇文章的主题是机器人(Robot). Jerry看过的第一部机器人主题的电影,就是大神詹姆斯 卡梅隆的神作《终结者II》,里面的T1000一度成为我的童年阴影。 几个月前我才欣赏完最新上映的终结者:黑暗命运(Dark ...
分类:
其他好文 时间:
2020-01-29 21:37:32
阅读次数:
131
查看备注: --查看表的comment select * from all_tab_comments where table_name= upper(tablename) ; --查看列的comment select * from all_col_comments where table_name= ...
分类:
数据库 时间:
2020-01-22 10:45:38
阅读次数:
133
清除掉缓存在git中的账号和密码 git credential-manager remove | uninstall 接下来,再次进行git操作就会提示输入账号和密码了 ...
分类:
其他好文 时间:
2020-01-17 13:43:49
阅读次数:
142
利用bloginfo 获取WordPress网站名称和主页链接 用法一: $blog_title = get_bloginfo('name'); //获取站点名称 $linkzmki = get_bloginfo('url'); //获取首页链接 echo $blog_title //结果:钻芒博客 ...
分类:
Web程序 时间:
2020-01-12 13:25:39
阅读次数:
735
If you're using the NavigationService in Prism, for Xamarin.Forms or simply Xamarin, like this : 1 you might notice native crashes with no information ...
分类:
其他好文 时间:
2020-01-12 00:13:03
阅读次数:
85