step 1: 安装graphviz(不安装graphviz本地无法现在PlantUML) https://graphviz.gitlab.io/_pages/Download/Download_windows.html step 2: 安装PlantUML插件 https://blog.csdn. ...
分类:
系统相关 时间:
2020-05-08 09:21:37
阅读次数:
143
自定义图片宽高比例限制 checkImageWH(file) { let self = this; return new Promise(function (resolve, reject) { let filereader = new FileReader(); filereader.onload ...
分类:
其他好文 时间:
2020-05-07 22:45:08
阅读次数:
435
1、下载并解压benchmarksql BenchMarkSQL下载链接:http://sourceforge.net/projects/benchmarksql/ 下载后放置到安装机器上直接upzip安装包 2、安装ant [root@localhost data]# yum install an ...
分类:
数据库 时间:
2020-05-07 13:39:30
阅读次数:
133
去mysql安装下的my.ini文件,右键记事本打开,然后找到 [mysqld] ,在[mysqld]后面添加一行 skip-grant-tables 然后保存然后重启mysqlnet stop mysqlnet start mysql ...
分类:
数据库 时间:
2020-05-06 23:14:09
阅读次数:
122
1. Good Morning! 2. Good Morning! 3. How can help you? 4. I unserstand that the school organises... 5. umm, trips to different... 6. Yes, we run five ...
分类:
其他好文 时间:
2020-05-06 20:10:54
阅读次数:
95
1、需要下载jacooc 和 ant的包,放在linux下。目录自定 Ant:https://ant.apache.org/bindownload.cgi(历史版本:https://archive.apache.org/dist/ant/binaries/)Jacoco:https://www.ec ...
分类:
系统相关 时间:
2020-05-06 20:08:15
阅读次数:
100
题目描述 City C is really a nightmare of all drivers for its traffic jams. To solve the traffic problem, the mayor plans to build a RTQS (Real Time Query ...
分类:
其他好文 时间:
2020-05-06 19:43:30
阅读次数:
70
如何使用组策略禁用远程桌面 禁用远程桌面可以保证本机的安全,防止非法入侵,下面为大家介绍下具体的禁用步骤 步骤一:win+r打开运行,输入gpedit.msc 步骤二:用户配置 管理模块 Windows组件 终端服务,然后打开右侧窗格中的“允许用户使用终端服务远程连接”项; 步骤三:设置为“已禁用” ...
分类:
其他好文 时间:
2020-05-06 14:23:38
阅读次数:
143
一 .关键点id id表示select查询的执行顺序,其中包含一组数字.可能出现的情况为如下的几种: [1]id相同,从上向下进行执行.(常见于多表联查的情况下) [2]id不同,id大的先执行.(常见于子查询的情况下) 通过执行计划的执行顺序,我们可以获取到sql真正的执行顺序. 二 . sele ...
分类:
其他好文 时间:
2020-05-06 12:00:16
阅读次数:
68
快速排序(ES6) function qSort(arr){ if(arr.length <= 1){return arr} const mVal = arr.shift() //这是基准数,比这小的放左边数组, 比这大的放在右边 let [left, right] = [[], []] arr.f ...
分类:
编程语言 时间:
2020-05-05 19:57:20
阅读次数:
115