1、 <bean id="schedulerFactory" class="org.springframework.scheduling.quartz.SchedulerFactoryBean"> <property name="triggers"> <list> <ref local="creat ...
分类:
编程语言 时间:
2020-04-27 15:10:53
阅读次数:
81
public class Test1{public static void main(String[] args) throws Exception { String str="abcd"; String str2="abcd"; System.out.println(str==str2);//tr ...
分类:
其他好文 时间:
2020-04-26 14:18:59
阅读次数:
77
目录: Docker的安装及使用 安装 常用命令 Dockerfile Docker本地私有仓库的创建及使用 Docker-compose Demo:docker部署flask Docker docker-ce 开源 docker-ee 收费 Docker的安装 卸载原来的docker yum re ...
分类:
其他好文 时间:
2020-04-26 01:38:19
阅读次数:
97
本文目录:委托 委托的简单使用 用委托实现插件式编程 多播委托 静态方法和实例方法对于委托的区别 泛型委托 Func 和 Action 委托 委托的兼容事件 事件的基本使用 事件的标准模式结尾 委托委托太常见了,能灵活运用可以使你在编程中游刃有余。简单说它就是一个能把方法当参数传递的对象,而且还知道 ...
分类:
其他好文 时间:
2020-04-25 17:10:56
阅读次数:
64
题目 编写一个 SQL 查询,来删除?Person?表中所有重复的电子邮箱,重复的邮箱里只保留?Id?最小?的那个。 + + + | Id | Email | + + + | 1 | john@example.com | | 2 | bob@example.com | | 3 | john@exam ...
分类:
其他好文 时间:
2020-04-25 12:30:33
阅读次数:
79
获取脚本所在的路径 SHHOME=$(cd `dirname $0`; pwd) 格式化数字 tr -cd "[0-9]" 获取状态码 curl -I -m 10 -o /dev/null -s -w %{http_code} 127.0.0.1:80 ...
分类:
系统相关 时间:
2020-04-25 10:33:38
阅读次数:
137
1、找出ifconfifig “网卡名” 命令结果中本机的IPv4地址 [root@Centos8 data]# ifconfig|grep inet|head -n1|tr -s ' '|cut -d' ' -f3 10.0.0.100 2、查出分区空间使用率的最大百分比值 [root@Cento ...
分类:
其他好文 时间:
2020-04-24 22:06:39
阅读次数:
105
一、初步了解DockerFile DockerFile的作用就是将你需要的所有的镜像打包成一个DockerFile制作成一个全新的镜像(自定义镜像),这个镜像里有可能有配置好的redis和mysql的集群,nginx和tomcat等等。多机房部署只需要运行这个镜像就好了。 镜像的定制实际上就是定制每 ...
分类:
其他好文 时间:
2020-04-23 20:52:58
阅读次数:
106
一、文档设置不能放在JSP文件内部,必须放在头部 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <ht ...
分类:
Web程序 时间:
2020-04-23 17:30:09
阅读次数:
110