一、介绍 /** * This class provides thread-local variables. These variables differ from * their normal counterparts in that each thread that accesses one ( ...
分类:
其他好文 时间:
2020-05-02 00:12:20
阅读次数:
61
--start with ... connect by prior --case1 select * from org o --excute order=>first:start with connect by prior, then where condition where o.flag = ' ...
分类:
数据库 时间:
2020-05-01 10:30:14
阅读次数:
86
通过容器创建镜像 我们可以通过以下两种方式对镜像进行更改。 1. 从已经创建的容器中更新镜像,并且提交这个镜像 2. 使用 Dockerfile 指令来创建一个新的镜像 下面通过已存在的容器创建一个新的镜像 docker commit -m="First Docker" -a="wcjiang" a ...
分类:
其他好文 时间:
2020-05-01 00:53:10
阅读次数:
51
(1)直接创建索引 CREATE INDEX index_name ON table(column(length)) CREATE UNIQUE INDEX zipindex on ec_address(FIRST_LETTER(3)) mysql> create index index_name ...
分类:
数据库 时间:
2020-04-30 15:19:55
阅读次数:
60
西方人的名(first name)确实比较少,他们一般不创造新的名字,而是从已经有的名字中挑选。西方由于基督教的影响,很多人都从《圣经》中挑选名字。重名率确实高。前几年,美国耶鲁大学(Yale University)就出现了5个David、4个Mary分到同一宿舍的事。不过,西方人多数还有“中名”( ...
分类:
其他好文 时间:
2020-04-30 13:13:29
阅读次数:
87
"传送门" 题意: 给定一颗$n$个结点的树,每个结点有个权值$v_i$,定义一颗树的价值为以他为根节点的某棵树所有结点的异或值。 现在对于所有的$k$在$[0,m)$范围内,回答有多少个子树的价值为$k$。 $n\leq 1000,m\leq 2^{10}$。 思路: 我们设$F_i$为将$i$作 ...
分类:
其他好文 时间:
2020-04-29 23:55:28
阅读次数:
124
explain显示了mysql如何使用索引来处理select语句以及连接表。可以帮助选择选择更好的索引和写出更优化的查询语句。 使用方法,在select语句前加上explain就可以了 如: explain select surname,first_name form a,b where a.id= ...
分类:
数据库 时间:
2020-04-29 14:25:20
阅读次数:
89
Shiro源码分析-ShiroFilterFactoryBean 2020-04-29 配置代码 @Bean public ShiroFilterFactoryBean (@Qualifier("securityManager") SecurityManager securityManager) { ...
分类:
其他好文 时间:
2020-04-29 10:27:06
阅读次数:
44
Hello, this blog will show you how to use the tool we build. "项目链接" 1. establish new project First, you should establish a new project. Note the proje ...
分类:
其他好文 时间:
2020-04-29 00:58:13
阅读次数:
110
<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title></title> <link rel="stylesheet" href="css/bootstrap.min.css" /> <style type="text/css"> .ro ...
分类:
Web程序 时间:
2020-04-28 21:33:38
阅读次数:
166