- 博客(19)
- 收藏
- 关注
原创 遗留问题和新增需求
1.菜单显示全部. 下部导航把上面菜单覆盖了. 热菜列表可以测试查看多个菜种,根据F12 查看返回的数量是否对应.2.购物车里的 菜品+ - 添加背景颜色.和菜种显示一样.4.购物车 点击按钮 清空购物车按钮后 购物车关闭.最后弹窗提示 data的值 点餐成功!
2023-09-22 03:36:19
123
原创 国家统计局 省市县镇乡村等信息。
国家统计局 省市县镇乡村等信息。http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2021/
2022-06-23 09:28:33
2718
原创 hutool对javaBean拷贝
单体java类拷贝属性 UserAccountDto userAccountDto = new UserAccountDto(); userAccountDto.setName("郭靖"); userAccountDto.setAccount("guojing"); userAccountDto.setPassword("123456"); userAccountDto.setAge("30"); UserAccount userAccount = Con
2022-03-20 23:26:35
1045
原创 List 如何根据对象的属性去重
1.字符串去重普通写法 private static List<String> removeStringListDupli(List<String> stringList) { Set<String> set = new LinkedHashSet<>(); set.addAll(stringList); stringList.clear(); stringList.addAll(set
2022-03-20 23:18:19
2322
原创 mysql
mysql结构化查询语句分类mysql数据库字段定义查询SELECT COUNT(studentname) FROM student;SELECT COUNT(*) FROM student;SELECT COUNT(1) FROM student; /推荐/– 从含义上讲,count(1) 与 count(*) 都表示对全部数据行的查询。– count(字段) 会统计该字段在表中出现的次数,忽略字段为null 的情况。即不统计字段为null的记录。– count(*) 包括了所有的
2021-06-06 02:43:24
193
原创 安装UBuntu系统
1.以管理员身份打开 PowerShell 并运行: Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux2.下载 Ubuntu_1604.2019.523.0_x64.appx 放在 C:\Windows\System32 路径下.3.PowerShell窗口执行Add-AppxPackage .\Ubuntu_1604.2019.523.0_x64.appx
2021-04-12 21:32:22
433
原创 CollectionUtils工具类
使用 CollectionUtils 使用非常频繁。它可以使代码更加简洁和安全。 <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-collections4</artifactId> <version>4.3</version> &
2021-04-08 00:49:48
157
原创 判断是否为空
①字符串判断是否为null.一次判断多个字符串 String A = "a"; String B = "b"; String C = "c"; if (StringUtils.isAnyBlank(A, B, C)) { System.out.println("有空值!"); } else { System.out.println("全部不为空!"); }或
2021-04-08 00:30:35
187
原创 java基础知识
1.Integer类型判断是否相等.①当两个对象的值在-127~128之间时,可以使用 比较是否相等,但是当比较的值超出这个范围时,则不能使用比较.因为==比较的是对象的地址,正确比较是使用equals比较是否相等,或者使用拆箱和装箱规则.Integer a = 128;Integer b = 128;System.out.print(a==b); //falseInteger c = 127;Integer d = 127;System.out.print(c==d); //true
2021-03-29 11:42:16
66
原创 Queue队列
1.Queue:就是一个先入先出(FIFO)的数据结构.Queue接口与List、Set同一级别,都是继承了Collection接口。LinkedList实现了Deque接口.阻塞队列:ArrayBlockingQueue :一个由数组支持的有界队列。LinkedBlockingQueue :一个由链接节点支持的可选有界队列。PriorityBlockingQueue :一个由优先级堆支持的无界优先级队列。DelayQueue :一个由优先级堆支持的、基于时间的调度队列。Synchronous.
2021-03-28 18:04:44
111
原创 java操作金额
1.在处理金额时,由于浮点精度(float、double)运算不精确.计算机国如下显示: double num = 0.1 + 0.1 + 0.1; System.out.println("num = " + num); // 输出结果为0.30000000000000004 double num2 = 0.65 - 0.6; System.out.println("num2 = " + num2);// 输出结果为 0.05000000000
2021-03-25 23:31:53
1206
原创 mybatisplus代码生成
package com.guo.blog.config;import com.baomidou.mybatisplus.annotation.DbType;import com.baomidou.mybatisplus.annotation.FieldFill;import com.baomidou.mybatisplus.annotation.IdType;import com.baomidou.mybatisplus.generator.AutoGenerator;import com.ba
2021-03-24 23:48:46
86
原创 SpringBoot2.x项目整合Swagger
快速整理Swagger1.整合maven依懒 <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger2</artifactId> <version>2.9.2</version> </dependency>
2021-03-24 23:45:29
175
原创 随机生成6位验证码
/** * 随机生成6位验证码 * * @author guojing */public class VerificationCode { public static void main(String[] args) { String[] str = {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M
2021-03-24 23:16:00
272
原创 jdk1.8 时间特性
public class StringDate { public static void main(String[] args) { LocalDate today = LocalDate.now(); int yyyy = today.getYear(); int dd = today.lengthOfMonth(); System.out.println("当年:" + yyyy); System.out.pri
2021-03-24 23:09:25
297
原创 判断2个List<Object>属性是否全部一致
**判断2个List<Object>属性是否全部一致.** 1.创建实体类@Data@NoArgsConstructor@AllArgsConstructorpublic class ColumnMetaData { private String columnName; private String columnType; private boolean primaryKey; @Override public boolean eq..
2021-03-24 23:01:24
510
原创 List<Object>中根据object类中的某个属性去重
public class ListSelect { public static void main(String[] args) { List<Car> carList1 = new ArrayList(); carList1.add(new Car("1", "张三", "蓝色", "hello", 15)); carList1.add(new Car("1", "李四", "蓝色", "hello1", 16)); ca
2021-03-23 22:17:56
643
1
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人