问题:Given two integers n and k, return all possible combinations of k numbers out of 1 … n. For example,If n = 4 and k = 2, a solution is: [ [2,4], [3, ...
分类:
其他好文 时间:
2020-06-06 01:16:22
阅读次数:
93
开启服务 hive --service hiveserver2 & 如果你元数据配置了在mysql了,则无需再次开启元数据服务,否则会报错 详情请见:https://blog.csdn.net/u013310119/article/details/78485249 ...
分类:
其他好文 时间:
2020-06-06 00:55:22
阅读次数:
91
vim使用小记 语法高亮: https://blog.csdn.net/g_brightboy/article/details/14229139 个人代码 " All system-wide defaults are set in $VIMRUNTIME/debian.vim and sourced ...
分类:
系统相关 时间:
2020-06-05 22:49:18
阅读次数:
76
CVE-2019-2618任意文件上传漏洞复现 漏洞介绍: 近期在内网扫描出不少CVE-2019-2618漏洞,需要复测,自己先搭个环境测试,复现下利用过程,该漏洞主要是利用了WebLogic组件中的DeploymentService接口向服务器上传文件。攻击者突破了OAM(Oracle Acces ...
分类:
Web程序 时间:
2020-06-05 15:23:38
阅读次数:
134
https://community.smartbear.com/t5/SoapUI-Pro/Get-all-test-step-result-of-a-test-case/td-p/27746 然后其他case再获取这个case的属性进行判断 ...
分类:
其他好文 时间:
2020-06-05 15:21:25
阅读次数:
59
为什么要查询表数据量 在做数据仓库管理时,数据导入hive或向表生成数据后形成的数据资产,表里的数据量和占用存储空间是总要的元数据属性。为方便数据使用时对数据有基本的了解,需要对表的数据量做统计。 使用 analyze table 主动生成元数据信息 analyze table tableName ...
分类:
其他好文 时间:
2020-06-05 13:27:53
阅读次数:
669
新建项目 打开IDEA,并新建一个Web项目 添加Tomcat服务器,并添加包依赖 创建数据库,数据表,并添加内内容 创建Servlet,进行登陆验证 作者使用的Mysql 5.6版本,并且部署于服务器,所以先要去网上下载JDBC驱动(下载地址,mysql数据库与JDBC版本对应查看地址),下载zi ...
分类:
其他好文 时间:
2020-06-05 13:01:37
阅读次数:
67
Given a m * n matrix mat and an integer K, return a matrix answer where each answer[i][j] is the sum of all elements mat[r][c] for i - K <= r <= i + K ...
分类:
其他好文 时间:
2020-06-04 23:16:41
阅读次数:
110
自定义分页器的拷贝及使用 分页器代码copy: class Pagination(object): def __init__(self, current_page, all_count, per_page_num=2, pager_count=11): """ 封装分页相关数据 :param cur ...
分类:
其他好文 时间:
2020-06-04 21:36:02
阅读次数:
76
1.maven依赖 <dependency> <groupId>io.netty</groupId> <artifactId>netty-all</artifactId> <version>4.1.10.Final</version> </dependency> 2.springboot入口启动类 ...
分类:
编程语言 时间:
2020-06-04 20:07:47
阅读次数:
80