sonarqube && sonar-scanner link sonarqube download archive github-sonarqube sonarqube-7.9.3-lts sonarqube-lts-7.9 requirement link opt-env openjdk-11 ...
分类:
其他好文 时间:
2020-06-02 12:53:12
阅读次数:
58
SQL优化 – 写SQL语句用大写字母: 因为Oracle总是先解析SQL语句,把小写的字母转换成大写字母再执行。 – 尽量不要使用SELECT * 查询: 数据库在解析的过程中会将 * 依次转换成所有的列名,这个工作是通过查询数据字典完成的,这意味着将耗费更多的时间。 – 用 >= 替代 >: 高 ...
分类:
数据库 时间:
2020-05-31 21:45:33
阅读次数:
107
git:git@github.com:ccx19930930/services_register_and_discovery.git 参考链接:https://www.cnblogs.com/haippy/archive/2013/02/21/2920280.html base_class.h 1 ...
分类:
编程语言 时间:
2020-05-30 20:16:08
阅读次数:
68
在面试的时候突然遇到一个问题,面试官给出一个字符串数组,我该怎么去保存这个字符串数组呢,保存好以后又怎么把这个字符串数组利用起来, 我一开始想到的是用vector<string>存储, vector<string> vecstr={"i","work","at","byte","bytedance" ...
分类:
编程语言 时间:
2020-05-30 20:02:54
阅读次数:
100
git:git@github.com:ccx19930930/services_register_and_discovery.git 参考链接:https://www.cnblogs.com/haippy/archive/2013/02/21/2920280.html down_service_mg ...
分类:
编程语言 时间:
2020-05-30 19:55:01
阅读次数:
56
MAVEN环境配置 Maven 3.3.9下载地址: https://archive.apache.org/dist/maven/maven-3/3.3.9/binaries/ <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmln ...
分类:
其他好文 时间:
2020-05-28 19:39:57
阅读次数:
72
原文:WPF 让窗口激活作为前台最上层窗口的方法 原文参照林大佬的博客WPF 让窗口激活作为前台最上层窗口的方法 我只提供下,我使用的代码 [DllImport("user32.dll")] private static extern IntPtr GetForegroundWindow(); [D... ...
本文意在指导使用YUM来安装最新版mariadbStep1:新建repo文件touch/etc/yum.repos.d/MariaDB.repo官方源[mariadb]name=MariaDB-10.3.9baseurl=http://yum.mariadb.org/10.3.9/centos7-amd64#alternative:baseurl=http://archive.mariadb.or
分类:
数据库 时间:
2020-05-28 13:05:55
阅读次数:
69
常见的一些SQL函数, 包含数值, 字符串, 日期和IF, CASE等函数 -- 数值函数 -- ROUND 四舍五入, CEILING,最大值 SELECT ROUND(5.73, 1); SELECT CEILING(5.7); SELECT FLOOR(5.2); SELECT ABS(-5. ...
分类:
数据库 时间:
2020-05-28 00:34:08
阅读次数:
78
转自https://www.cnblogs.com/jian-jia/archive/2019/11/24/11924371.html module a(b, c, d,...z);//module: 模块头 a:模块名 (b,c,d,...z):端口列表 input b;//输入声明 input ...
分类:
编程语言 时间:
2020-05-28 00:30:00
阅读次数:
90