上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 34 下一页
摘要: 1、项目配置的理解 IDEA 中最重要的各种设置项,就是这个 Project Structre 了,关乎你的项目运行,缺胳膊少腿都不行。最近公司正好也是用之前自己比较熟悉的IDEA而不是Eclipse,为了更深入理解和使用,就找来各种资料再研究一下,这里整理后来个输出。 1.1 Project Pr 阅读全文
posted @ 2023-07-06 15:44 Robots2 阅读(42) 评论(0) 推荐(0)
摘要: IDEA默认的情况下只能打开一个项目,即使添加了一个项目也会弹出一个窗口,将添加的项目显示在新的窗口中。通过下面操作可以,使IDEA打开过个项目。 1.1 打开项目结构 1.2 添加多个项目 点击”Modules”,点击”+”,点击”Import Module”。 使用导入的。根据弹出的信息依次添加 阅读全文
posted @ 2023-07-06 15:39 Robots2 阅读(4505) 评论(0) 推荐(0)
摘要: Plugin Python was not installed: Cannot download 'https://plugins.jetbrains. file -> settings -> System Settings -> Updates 把 Use secure connection 的 阅读全文
posted @ 2023-07-06 15:36 Robots2 阅读(199) 评论(0) 推荐(0)
摘要: 建表语句 CREATE TABLE IF NOT EXISTS base_site_test( site_id INT DEFAULT '10', city_code INT, user_name VARCHAR(32) DEFAULT '', pv BIGINT DEFAULT '0' ) UNI 阅读全文
posted @ 2023-07-06 15:32 Robots2 阅读(129) 评论(0) 推荐(0)
摘要: 分区、分桶、明细表 测试用户表 CREATE TABLE user_info( dt DATE, id varchar(36) NOT NULL DEFAULT '10', user_name varchar(36), age tinyint, phone varchar(11), province 阅读全文
posted @ 2023-07-06 15:30 Robots2 阅读(307) 评论(0) 推荐(0)
摘要: 一、简介 我们对服务响应时间的衡量指标有Min(最小响应时间)、Max(最大响应时间)、Avg(平均响应时间)等,P99、P90也是衡量指标 二、指标简介 1、平均值Avg 其中比较常用的值就是平均值,例如平均耗时为100ms,表示服务器当前请求的总耗时/请求总数量,通过该值,我们大体能知道服务运行 阅读全文
posted @ 2023-07-04 17:23 Robots2 阅读(10144) 评论(0) 推荐(2)
摘要: import java.sql.*; public class jdbcTest { public static void main(String[] args) throws ClassNotFoundException, SQLException { //1、加载驱动 Class.forName 阅读全文
posted @ 2023-06-29 15:45 Robots2 阅读(305) 评论(0) 推荐(0)
摘要: 一、maven <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance 阅读全文
posted @ 2023-06-29 10:05 Robots2 阅读(65) 评论(0) 推荐(0)
摘要: 一、背景 用户使用如下sql来获取周开始和结束时间,直连presto查询该sql,得到的week_start=2019-12-30,而通过calcite-avatica查询出结果为week_start=2019-12-29. 日期相差一天。 with week_array as ( select s 阅读全文
posted @ 2023-06-27 18:05 Robots2 阅读(117) 评论(0) 推荐(0)
摘要: 一、配置信息正常 1、防火墙配置通过 2、mysql端口正常启动netstat -antlp | grep 3306 3、配置都正常,但是telnet访问不通超时Operation timed out telnet 124.223.98.224 3306 Trying 124.223.98.224. 阅读全文
posted @ 2023-06-22 13:06 Robots2 阅读(480) 评论(0) 推荐(0)
上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 34 下一页