我的github
上一页 1 ··· 116 117 118 119 120 121 122 123 124 ··· 131 下一页
摘要: 1. 什么是Druid连接池 2. 阿里druid-spring-boot-starter 3. 通过连接池怎么配置和切换数据源 阅读全文
posted @ 2023-03-12 17:44 XiaoNiuFeiTian 阅读(12) 评论(0) 推荐(0) 编辑
摘要: 也就是说,在声明了自定义类的数组之后,对每一个数组元素的初始化,都要为其new一个对象出来使得指针指向该对象,Java语言本身是不提供在自定义类数组声明时候自动创建新对象的方式的。 Course[] courses = new Course[3]; courses[0] = new Course() 阅读全文
posted @ 2023-03-10 16:28 XiaoNiuFeiTian 阅读(35) 评论(0) 推荐(0) 编辑
摘要: 问题: Entity @Table(name = "ways") @TypeDef(name = "hstore", typeClass = HstoreUserType.class) @Cacheable public class Way { /** * Primary key for the r 阅读全文
posted @ 2023-03-10 11:56 XiaoNiuFeiTian 阅读(67) 评论(0) 推荐(0) 编辑
摘要: 1. Regex.Replace 2. Regex.Match 用哪一个? 参考:https://blog.csdn.net/qubernet/article/details/107230863 阅读全文
posted @ 2023-03-10 09:24 XiaoNiuFeiTian 阅读(33) 评论(0) 推荐(0) 编辑
摘要: 方法一:https://blog.csdn.net/qq496013218/article/details/56845485 方法二:https://blog.csdn.net/qq_40698086/article/details/126887535 怎么弄都不行,把springboot改成1.5 阅读全文
posted @ 2023-03-09 15:49 XiaoNiuFeiTian 阅读(135) 评论(0) 推荐(0) 编辑
摘要: 1. 在pom.xml数据库sdk版本设置 2. application.yml中进行数据库连接信息配置 spring: datasource: url: jdbc:mysql://localhost:3306/test1?characterEncoding=utf-8&serverTimezone 阅读全文
posted @ 2023-03-09 15:16 XiaoNiuFeiTian 阅读(265) 评论(0) 推荐(0) 编辑
摘要: 参考1:https://blog.csdn.net/weixin_43864336/article/details/97659362 参考2:https://www.cnblogs.com/zhangdaopin/p/15850896.html cron表达式:https://cron.qqe2.c 阅读全文
posted @ 2023-03-09 11:20 XiaoNiuFeiTian 阅读(151) 评论(0) 推荐(0) 编辑
摘要: 最常用的便是for循环查询: for(StudentRecord record : records) { if(record.getYear() == yearSearch) { System.out.println(record.getId()+" " + record.getFirst()+ " 阅读全文
posted @ 2023-03-08 17:00 XiaoNiuFeiTian 阅读(29) 评论(0) 推荐(0) 编辑
摘要: 可能是由于Cesium本身自带的DEM精度不够? 参考:https://blog.csdn.net/GISuuser/article/details/126711683 阅读全文
posted @ 2023-03-08 15:12 XiaoNiuFeiTian 阅读(260) 评论(0) 推荐(0) 编辑
摘要: 解决办法:表面看是正则表达式写的有问题,实际是编码规则出了问题。在index.html中添加<meta charset="utf-8" /> 参考:https://blog.csdn.net/duyy1990/article/details/129015388 阅读全文
posted @ 2023-03-08 11:59 XiaoNiuFeiTian 阅读(135) 评论(0) 推荐(0) 编辑
上一页 1 ··· 116 117 118 119 120 121 122 123 124 ··· 131 下一页