Loading

摘要: 报错:java.lang.ClassCastException: xxxx cannot be cast to xxxx 问题复现:网站上传license后,后台重新加载登录页面,并调用dubbo服务验证用户信息,由apache版本切换为Alibaba版本后,发现会爆出该问题 问题解决:最初认为是d 阅读全文
posted @ 2023-03-24 15:04 李旭2018 阅读(328) 评论(0) 推荐(0) 编辑
摘要: 实现内容 能够实现将四张图片拼接,整合成一张完整图片 使用了getRGB、setRGB方法进行图片的提取拼接 实现代码 image1 = ImageIO.read(imageFile1); image2 = ImageIO.read(imageFile2); image3 = ImageIO.rea 阅读全文
posted @ 2023-03-21 16:32 李旭2018 阅读(73) 评论(0) 推荐(0) 编辑
摘要: sql SELECT DISTINCT table_name FROM information_schema.columns WHERE table_schema = 'xxx' and column_name='xxx'; information_schema 介绍 information_sch 阅读全文
posted @ 2023-02-22 15:55 李旭2018 阅读(202) 评论(0) 推荐(0) 编辑
摘要: 问题研究: Spring Boot configures Spring MVC with a maximum file of 1Mb per file and a maximum of 10Mb of file data in a single request 文件上传有默认最大限制,即最大可支持1 阅读全文
posted @ 2023-01-31 15:52 李旭2018 阅读(390) 评论(0) 推荐(0) 编辑
摘要: 记录一次报错 java.lang.IllegalArgumentException: image == null! jdk版本:openjdk 1.8 问题复现:使用 ImageIO.read(new FileInputStream(imgPath)) 进行图片读取时,遇到 部分.jpg 格式图片上 阅读全文
posted @ 2023-01-16 15:56 李旭2018 阅读(2144) 评论(0) 推荐(0) 编辑
摘要: 官网地址:https://craftpip.github.io/jquery-confirm/ 虽然很多时候都选择使用新的前端框架进行开发,但是原生js的很多功能及插件其实也很强大。值得探究 本次设置confirm确认框用到一些内容 包括设置confirm tittle content ,按钮文本及 阅读全文
posted @ 2023-01-16 15:36 李旭2018 阅读(491) 评论(0) 推荐(0) 编辑
摘要: IDEA自动补全不区分大小写 只需要将match case 取消勾选 IDEA 设置SVN提交忽略文件 eidtor-->code style -->file types 在Ignore files and folders添加 新添加的过滤条件: node_modules;target;.idea; 阅读全文
posted @ 2022-11-17 15:41 李旭2018 阅读(13) 评论(0) 推荐(0) 编辑
摘要: 一、类 在UML中,类使用包含类名、属性和操作且带有分隔线的长方形来表示,如定义一个Employee类,它包含属性name、age和email,以及操作modifyInfo(),在UML类图中该类如图1所示: //对应java代码 public class Employee { private St 阅读全文
posted @ 2022-09-14 11:25 李旭2018 阅读(54) 评论(0) 推荐(0) 编辑
摘要: --Integer for loop for i in 1..10 loop …. end loop; --Implicit cursor loop for c in (select ) loop …. end loop; --While loop i:=5; while i >10 loop i: 阅读全文
posted @ 2021-09-15 09:19 李旭2018 阅读(491) 评论(1) 推荐(0) 编辑
摘要: PL/SQL注册码 plsql13.0.5产品编号Product Code: kfj6yg6rfyhqcha6cbgs6fsw3kyje7a6qr序列号Serial Number: 276182口令Password: xs374ca 阅读全文
posted @ 2021-07-29 10:57 李旭2018 阅读(214) 评论(0) 推荐(0) 编辑