上一页 1 ··· 41 42 43 44 45 46 47 48 49 ··· 202 下一页
摘要: 前篇:https://www.cnblogs.com/heyang78/p/15860075.html 【需求】 目标系统存在三张表,用户表Customer,最大有两百万数据;标记表tag,一开始定为10000个,后来改为1600个;两者的连接表Customer_Tag,这个数据多,最多时为2,00 阅读全文
posted @ 2022-02-04 09:55 逆火狂飙 阅读(55) 评论(0) 推荐(0)
摘要: SpringBoot程序里,显示静态图片不是事,显示Canvas图也有固定套路,如果是用AWT生成的图片呢,也只是多两个步骤而已。 首先,我们需要准备一个对外服务的函数: @RequestMapping("/happynewyearPic") public void showPicture(Http 阅读全文
posted @ 2022-02-03 10:18 逆火狂飙 阅读(238) 评论(0) 推荐(0)
摘要: 这篇SQL优化文较长,性急者请直接拉到页尾看答案,若不着急请慢慢看。 后续:https://www.cnblogs.com/heyang78/p/15862497.html 【基本表】 -- tag表结构 create table tag( id number(12), name nvarchar2 阅读全文
posted @ 2022-02-02 09:35 逆火狂飙 阅读(398) 评论(2) 推荐(0)
摘要: 有图有真相,先上图: 代码: import java.awt.BasicStroke; import java.awt.Color; import java.awt.Font; import java.awt.Graphics2D; import java.awt.image.BufferedIma 阅读全文
posted @ 2022-01-31 13:37 逆火狂飙 阅读(310) 评论(0) 推荐(0)
摘要: 原因:未安装无线驱动 解决方案:下载Lenovo联想驱动管理,安装 Intel Wi-Fi 6 AX200(Wi-Fi 2x2 802.11ax) 驱动 安装好后,重启,无线网络就出现了。 END 阅读全文
posted @ 2022-01-30 08:57 逆火狂飙 阅读(2297) 评论(0) 推荐(0)
摘要: 执行语句: -- tag表结构create table tag( id number(12), name nvarchar2(20), primary key(id) ) -- tag充值 insert into tag select rownum, dbms_random.String('*',d 阅读全文
posted @ 2022-01-29 19:53 逆火狂飙 阅读(122) 评论(0) 推荐(0)
摘要: 假设有这样一张没有事先设定主键的表: create table test( id number(12) ) 这样给它填充数据: insert into test(id) values (1); insert into test(id) values (2); insert into test(id) 阅读全文
posted @ 2022-01-29 19:14 逆火狂飙 阅读(155) 评论(0) 推荐(0)
摘要: 首先创建一张含千条记录的tag表: tag表定义: create table tag( id number(12), name nvarchar2(20), primary key(id) ) 插值: insert into tag select rownum, dbms_random.String 阅读全文
posted @ 2022-01-29 18:42 逆火狂飙 阅读(70) 评论(0) 推荐(0)
摘要: 代码: <!DOCTYPE html> <html lang="utf-8"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <head> <title>圆内摆线模拟</title> <style type= 阅读全文
posted @ 2022-01-20 18:55 逆火狂飙 阅读(140) 评论(0) 推荐(0)
摘要: 代码如下: package test; import java.util.regex.Pattern; /** * 判断字符串是否是double数(实数) * */ public class Test9 { public static void main(String[] args) { Strin 阅读全文
posted @ 2022-01-18 19:36 逆火狂飙 阅读(2763) 评论(0) 推荐(0)
上一页 1 ··· 41 42 43 44 45 46 47 48 49 ··· 202 下一页
生当作人杰 死亦为鬼雄 至今思项羽 不肯过江东