上一页 1 2 3 4 5 6 7 ··· 21 下一页
摘要: 1. datagrip 查询结果不能修改 原因:选择了两个以上 schema 解决: 只选一个 2. datagrip 查询结果不能新增行 原因:该表是在 navicat 中建的。不在当前 datagrip table缓存中。所以 Add Row 是灰色的,没法新增行。 解决: 阅读全文
posted @ 2021-12-25 14:25 xiluhua 阅读(1270) 评论(1) 推荐(1) 编辑
摘要: BigDecimalTest public class BigDecimalTest { public static void roundFour() { double f = 10.2345; BigDecimal b0 = new BigDecimal(f); BigDecimal b1 = n 阅读全文
posted @ 2021-12-23 15:56 xiluhua 阅读(31) 评论(0) 推荐(0) 编辑
摘要: 打印sql日志 https://baomidou.com/pages/833fab/ 阅读全文
posted @ 2021-12-22 18:05 xiluhua 阅读(45) 评论(0) 推荐(0) 编辑
摘要: 插入特殊字符 ’ create table TMP_IELTS ( sid NUMBER, sname VARCHAR2(2000), surl VARCHAR2(2000), create_time DATE default sysdate ) insert into TMP_IELTS (SID 阅读全文
posted @ 2021-12-21 15:09 xiluhua 阅读(51) 评论(0) 推荐(0) 编辑
摘要: # 原本 ALTER TABLE test_staging2_prp3.PROLCLAIMOPINION_V3 DROP COLUMN accidentdate; -- ALTER TABLE test_staging2_prp3.PROLCLAIMOPINION_V3 ADD COLUMN acc 阅读全文
posted @ 2021-12-07 18:12 xiluhua 阅读(38) 评论(0) 推荐(0) 编辑
摘要: 下载 Packet Tracer 1. 注册 cisco 账户 https://www.netacad.com/courses/packet-tracer/introduction-packet-tracer 2. 下载 https://www.packettracernetwork.com/dow 阅读全文
posted @ 2021-11-27 21:16 xiluhua 阅读(54) 评论(0) 推荐(0) 编辑
摘要: SELECT concat('DROP TABLE IF EXISTS ', table_name, ';') FROM information_schema.tables WHERE table_schema = 'dr_staging3_plyck'; select concat('DROP P 阅读全文
posted @ 2021-11-21 17:01 xiluhua 阅读(73) 评论(0) 推荐(0) 编辑
摘要: 开发人员工作流程 # 第一步 CREATE TABLE `tm_procedure_info_luoj_20211121_1` ( `id` int(11) NOT NULL, `task` varchar(80) DEFAULT NULL, `proc_name` varchar(50) DEFA 阅读全文
posted @ 2021-11-21 13:23 xiluhua 阅读(62) 评论(0) 推荐(0) 编辑
摘要: error curreentProcedureInfo: PROC_PRP3_PROLRECEIPT, 4, id: 5102 swr-lix-agent-iptiq 2021-11-18 21:27:34.986 INFO - c.s.i.m.d.s.i.m.HandleStoreProcedur 阅读全文
posted @ 2021-11-18 21:38 xiluhua 阅读(32) 评论(0) 推荐(0) 编辑
摘要: mysql rownum SET @rownum:= 0;select @rownum:=@rownum+1 as rownum, t.* from test_staging2_prp3.TM_PROLRECEIPT t 阅读全文
posted @ 2021-11-18 20:23 xiluhua 阅读(442) 评论(0) 推荐(0) 编辑
摘要: 断言: 用于检验实际结果和预期结果是否一致。断言强调的是对于整个测试流程的结果进行判断,所以断言的内容是极为核心的。 阅读全文
posted @ 2021-11-14 16:40 xiluhua 阅读(59) 评论(0) 推荐(0) 编辑
摘要: mysql 当前时间更新 update swr_procedure_info set create_time = CURRENT_TIMESTAMP() where id = 3053 阅读全文
posted @ 2021-11-12 18:42 xiluhua 阅读(428) 评论(0) 推荐(0) 编辑
摘要: 原文:https://blog.csdn.net/Beyond737/article/details/109400582 1 SET @rowNum = 0; 2 SELECT 3 ( @rowNum := @rowNum + 1 ) AS rowNo, 4 t.phone, 5 t.count 6 阅读全文
posted @ 2021-11-11 19:33 xiluhua 阅读(432) 评论(0) 推荐(0) 编辑
摘要: package com.baomidou.samples.mybatisplus3.config; import com.baomidou.dynamic.datasource.DynamicRoutingDataSource; import com.baomidou.dynamic.datasou 阅读全文
posted @ 2021-11-11 15:43 xiluhua 阅读(1307) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-11-07 20:17 xiluhua 阅读(15) 评论(0) 推荐(0) 编辑
摘要: SELECT t.TABLE_NAME AS '表名', t.COLUMN_NAME AS '字段名称', t.COLUMN_TYPE AS '数据类型', CASE IFNULL(t.COLUMN_DEFAULT,'Null') WHEN '' THEN '空字符串' WHEN 'Null' TH 阅读全文
posted @ 2021-11-06 13:26 xiluhua 阅读(112) 评论(0) 推荐(0) 编辑
摘要: 计算分多少页 int limitNum = DsBizConstant.QUERY_LIMIT_NUM; Integer pageNum = count / limitNum; if (count % limitNum != 0) { pageNum++; } for (int i = 0; i < 阅读全文
posted @ 2021-11-04 16:17 xiluhua 阅读(31) 评论(0) 推荐(0) 编辑
摘要: 解决方法: https://jingyan.baidu.com/article/3d69c5518b8bfef0cf02d7e1.html 用到的命令: 1. net start vmci 2. net start vmx86 阅读全文
posted @ 2021-11-01 09:48 xiluhua 阅读(174) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/weixin_42359464/article/details/80882549 阅读全文
posted @ 2021-10-16 17:23 xiluhua 阅读(100) 评论(0) 推荐(0) 编辑
摘要: mysql 如何删除数据库中所有的表 SELECT concat('DROP TABLE IF EXISTS ', table_name, ';') FROM information_schema.tables WHERE table_schema = 'uat_reserve'; 阅读全文
posted @ 2021-10-15 13:31 xiluhua 阅读(216) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-09-29 17:06 xiluhua 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 1.什么是selenium 1.什么是selenium? (1)Selenium是一个用于Web应用程序测试的工具。 (2)Selenium 测试直接运行在浏览器中,就像真正的用户在操作一样。 (3)支持通过各种driver(FirfoxDriver,IternetExplorerDriver,Op 阅读全文
posted @ 2021-09-27 15:51 xiluhua 阅读(891) 评论(0) 推荐(0) 编辑
摘要: Unable to connect to the server: x509: cannot validate certificate for 172.25.97.19 because it doesn't contain any IP SANs 问题原因:被公司公司墙了 解决办法: 阅读全文
posted @ 2021-09-26 17:02 xiluhua 阅读(1333) 评论(1) 推荐(0) 编辑
摘要: 4. 修改pip下载源 运行pip install 命令会从网站上下载指定的python包,默认是从 https://files.pythonhosted.org/ 网站上下 载。这是个国外的网站,遇到网络情况不好的时候,可能会下载失败,我们可以通过命令,修改pip现在软件时的 源。 格式: pip 阅读全文
posted @ 2021-09-25 21:16 xiluhua 阅读(14) 评论(0) 推荐(0) 编辑
摘要: network 其实是抓包工具 阅读全文
posted @ 2021-09-25 20:25 xiluhua 阅读(90) 评论(0) 推荐(0) 编辑
摘要: 添加前 Accept: application/json, text/javascript, */*; q=0.01 Accept-Encoding: gzip, deflate, br Accept-Language: zh-CN,zh;q=0.9 Cache-Control: no-cache 阅读全文
posted @ 2021-09-25 17:39 xiluhua 阅读(71) 评论(0) 推荐(0) 编辑
摘要: JavaScript heap out of memory https://www.cnblogs.com/jianxuanbing/p/9331042.htmlhttps://www.npmjs.com/package/increase-memory-limithttps://stackoverf 阅读全文
posted @ 2021-09-22 19:59 xiluhua 阅读(1248) 评论(0) 推荐(0) 编辑
摘要: 环境: 公司:阿里云,金融云,K8S 家里:2台WIFI WIFI-A WIFI-B nacos 版本: 1.4.2(客户端+服务端) 2.0.2(客户端+服务端) 现象: 2021-09-19 14:27:03.287 ERROR - [http-nio-8080-exec-9] o.a.c.c. 阅读全文
posted @ 2021-09-19 15:53 xiluhua 阅读(6636) 评论(0) 推荐(0) 编辑
摘要: https://stackoverflow.com/questions/46465891/what-is-ngdefaultcontrol-in-angular/46465959 添加 ngDefaultControl <label *ngIf="'datepicker' item.type && 阅读全文
posted @ 2021-09-16 16:05 xiluhua 阅读(615) 评论(0) 推荐(0) 编辑
摘要: 报错文字 Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'externalDumpService': Invocation of init metho 阅读全文
posted @ 2021-09-15 09:56 xiluhua 阅读(1592) 评论(0) 推荐(0) 编辑
摘要: 本篇博客通过本地 debug 的方式,详细介绍 nacos + openFeign 服务注册&发现工作原理。 篇幅有点长,内容如下: 前置准备 1.1. 版本 1.2. 背景:1.4.2 是截止写这篇博客当天 2021-09-12 最新的 1.x 版本。截图为证 1.3. 下载源码 1.4. 导入到 阅读全文
posted @ 2021-09-12 16:04 xiluhua 阅读(2390) 评论(0) 推荐(2) 编辑
摘要: 安装 telnet apt-get install telnet apt-get update && install ping linux 黏贴 shift + insert 阅读全文
posted @ 2021-09-10 12:13 xiluhua 阅读(19) 评论(0) 推荐(0) 编辑
摘要: springboot 获取 pid /* * Copyright 2012-2019 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you m 阅读全文
posted @ 2021-09-10 12:08 xiluhua 阅读(842) 评论(0) 推荐(0) 编辑
摘要: 参考: https://www.cnblogs.com/mchina/archive/2012/12/18/2816717.html 1. 环境 CentOS64-7.3 2. 安装 yum install samba samba-client samba-swat 3. 查看安装结果 rpm -q 阅读全文
posted @ 2021-08-30 15:16 xiluhua 阅读(146) 评论(0) 推荐(0) 编辑
摘要: java内存dump文件导出与查看 1. 生成dump文件的命令: jmap -dump:file=20210824.demo.dump 5628 说明: - jmap 是 jdk 自带的命令 - 5628 是 pid 进程号file后面的是自定义的文件名,最后的数字是进程的pid 2.1. 使用j 阅读全文
posted @ 2021-08-24 19:09 xiluhua 阅读(188) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-08-23 14:02 xiluhua 阅读(29) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-08-19 16:10 xiluhua 阅读(446) 评论(0) 推荐(0) 编辑
摘要: 查看本地代理端口: 阅读全文
posted @ 2021-08-01 19:56 xiluhua 阅读(77) 评论(0) 推荐(0) 编辑
摘要: 第一步 第二步 阅读全文
posted @ 2021-08-01 12:12 xiluhua 阅读(55) 评论(0) 推荐(0) 编辑
摘要: 如图:请求进来 会按照 filter -> interceptor -> controllerAdvice -> aspect -> controller的顺序调用 当controller返回异常 也会按照controller -> aspect -> controllerAdvice -> int 阅读全文
posted @ 2021-07-28 18:48 xiluhua 阅读(101) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 21 下一页