04 2025 档案

摘要:今天在做项目时,添加商品上传封面图片到minio,后台报错: error occurred ErrorResponse(code = RequestTimeTooSkewed, message = The difference between the request time and the ser 阅读全文
posted @ 2025-04-23 15:22 hwq1992 阅读(523) 评论(0) 推荐(0)
摘要:出现问题: Centos7使用yum命令失效,报错:Could not retrieve mirrorlist http://mirrorlist.centos.org/?release=7&arch=x86_64&repo=os&infra=stock error was 14: curl#6 - 阅读全文
posted @ 2025-04-14 14:46 hwq1992 阅读(120) 评论(0) 推荐(0)
摘要:![](https://img2024.cnblogs.com/blog/3630986/202504/3630986-20250409144324296-699789228.png) ![](https://img2024.cnblogs.com/blog/3630986/202504/3630986-20250409144405228-1168413436.png) ![](https://i 阅读全文
posted @ 2025-04-09 14:49 hwq1992 阅读(15) 评论(0) 推荐(0)
摘要:package github.oop; import java.io.IOException; /** * @author subeiLY * @create 2021-05-30 17:54 */ // 类 public class Demo01 { // main方法 public static 阅读全文
posted @ 2025-04-09 10:47 hwq1992 阅读(9) 评论(0) 推荐(0)
摘要:package github.array; /** * @author subeiLY * @create 2021-05-27 16:08 */ public class ArrayDemo01 { // 变量的类型 变量的名字 = 变量的值 public static void main(Str 阅读全文
posted @ 2025-04-09 09:22 hwq1992 阅读(7) 评论(0) 推荐(0)
摘要:package github.method; /** * @author subeiLY * @create 2021-05-27 9:28 */ public class Demo01 { // main方法 public static void main(String[] args) { int 阅读全文
posted @ 2025-04-08 16:52 hwq1992 阅读(11) 评论(0) 推荐(0)
摘要:package github.struct; /** * @author subeiLY * @create 2021-05-26 15:06 */ public class WileDemo01 { public static void main(String[] args) { // 输出1~1 阅读全文
posted @ 2025-04-08 16:19 hwq1992 阅读(11) 评论(0) 推荐(0)
摘要:package github.struct; import java.util.Scanner; /** * @author subeiLY * @create 2021-05-26 14:30 */ public class IFDemo01 { public static void main(S 阅读全文
posted @ 2025-04-08 15:57 hwq1992 阅读(14) 评论(0) 推荐(0)
摘要:package github.struct; /** * @author subeiLY * @create 2021-05-26 14:27 */ public class SXDemo01 { public static void main(String[] args) { System.out 阅读全文
posted @ 2025-04-08 15:49 hwq1992 阅读(11) 评论(0) 推荐(0)
摘要:package github.liuc; import java.util.Scanner; /** * @author subeiLY * @create 2021-05-26 10:42 */ public class Demo01 { public static void main(Strin 阅读全文
posted @ 2025-04-08 15:25 hwq1992 阅读(13) 评论(0) 推荐(0)
摘要:package github.demo01; /** * @author subeiLY * @create 2021-05-26 10:20 * @version 1.0 * @since 1.8 */ public class Doc { String name; /** * @author * 阅读全文
posted @ 2025-04-08 14:55 hwq1992 阅读(7) 评论(0) 推荐(0)
摘要:![](https://img2024.cnblogs.com/blog/3630986/202504/3630986-20250408143004378-1497951588.png) 阅读全文
posted @ 2025-04-08 14:30 hwq1992 阅读(17) 评论(0) 推荐(0)
摘要:package github.demo01; /** * @author subeiLY * @create 2021-05-25 15:14 */ public class Demo01 { public static void main(String[] args) { // 二元运算符 int 阅读全文
posted @ 2025-04-07 20:09 hwq1992 阅读(32) 评论(0) 推荐(0)
摘要:/** * @author subeiLY * @create 2021-05-25 10:46 */ public class Demo06 { static int allClicks = 0; // 类变量 String str = "hello world"; // 实例变量 public 阅读全文
posted @ 2025-04-07 19:47 hwq1992 阅读(11) 评论(0) 推荐(0)
摘要:一、导入MyCat镜像 MyCat并不是数据库,它只是SQL语句的路由器而已。创建MyCat容器之前,我们先导入镜像文件。照例把镜像文件上传到/root目录,然后用命令导入镜像文件。 mycat.tar.gz 链接:https://share.weiyun.com/RGR4FdVA 密码:z8mz7 阅读全文
posted @ 2025-04-07 19:39 hwq1992 阅读(79) 评论(0) 推荐(0)
摘要:/** * @author subeiLY * @create 2021-05-25 9:45 */ public class Demo04 { public static void main(String[] args) { int i = 128; byte b = (byte)i; // 内存 阅读全文
posted @ 2025-04-07 19:22 hwq1992 阅读(13) 评论(0) 推荐(0)
摘要:下面创建6个MySQL的步骤有严格要求,顺序不能颠倒,更不能漏掉某个步骤。倘若你少做了一个步骤,然后补做该步骤也不行,MySQL集群的数据同步依然失效。正确的做法是停掉所有MySQL容器,然后删掉容器和映射目录,然后重新按照下列步骤搭建数据库集群。因此你第一次搭建MySQL集群的时候,千万要认真观看 阅读全文
posted @ 2025-04-07 16:52 hwq1992
摘要:/** * @author subeiLY * @create 2021-05-24 19:06 */ public class Demo02 { public static void main(String[] args) { // 八大基本数据类型 // 整数 int num1 = 10; // 阅读全文
posted @ 2025-04-07 16:38 hwq1992 阅读(11) 评论(0) 推荐(0)
摘要:/** * @author subeiLY * @create 2021-05-23 21:21 */ public class Hello { // 单行注释 /* 多行注释 */ /** * 文档注释 * @param args */ public static void main(String 阅读全文
posted @ 2025-04-07 16:34 hwq1992 阅读(16) 评论(0) 推荐(0)
摘要:/** * @author subeiLY * @create 2021-05-24 18:36 */ public class Demo01 { public static void main(String[] args) { String Ahello = "subeiLY"; String h 阅读全文
posted @ 2025-04-07 16:34 hwq1992 阅读(7) 评论(0) 推荐(0)
摘要:IDEA下载 阅读全文
posted @ 2025-04-07 16:18 hwq1992 阅读(11) 评论(0) 推荐(0)
摘要:![](https://img2024.cnblogs.com/blog/3630986/202504/3630986-20250407160245895-545977322.png) 阅读全文
posted @ 2025-04-07 16:09 hwq1992 阅读(32) 评论(0) 推荐(0)
摘要:卸载JDK 删除java安装目录 删除JAVA_HOME 删除path下关于java的目录 java -version 下载jdk jdk8 jdk15 本课程云盘上面附带了JDK15.0.2的安装包,大家下载安装即可。因为从JDK16开始,Oracle移除了JDK中JavaSE的很多类。导致我们用 阅读全文
posted @ 2025-04-07 15:38 hwq1992 阅读(15) 评论(0) 推荐(0)
摘要:![](https://img2024.cnblogs.com/blog/3630986/202504/3630986-20250407153330203-987632571.png) 阅读全文
posted @ 2025-04-07 15:34 hwq1992 阅读(5) 评论(0) 推荐(0)
摘要:![](https://img2024.cnblogs.com/blog/3630986/202504/3630986-20250407152915800-1285673446.png) 阅读全文
posted @ 2025-04-07 15:30 hwq1992 阅读(7) 评论(0) 推荐(0)
摘要:推荐文本编辑器:Typora 文件后缀:xxx.md 阅读全文
posted @ 2025-04-07 15:11 hwq1992 阅读(6) 评论(0) 推荐(0)
摘要:[![](https://img2024.cnblogs.com/blog/3630986/202504/3630986-20250407150452114-1647381988.png)](https://www.kuangstudy.com/course?cid=1) 阅读全文
posted @ 2025-04-07 15:05 hwq1992 阅读(36) 评论(0) 推荐(0)