摘要: 实例Beanpackage com.atguigu.cachestudy.bean;import lombok.Data;@Datapublic class Emplyer { private int id; private String name; private double salary; p 阅读全文
posted @ 2022-05-08 14:06 玄空2 阅读(42) 评论(0) 推荐(0) 编辑
摘要: package function;import org.junit.jupiter.api.Test;import java.util.ArrayList;import java.util.Arrays;import java.util.Comparator;import java.util.Lis 阅读全文
posted @ 2022-05-06 21:33 玄空2 阅读(25) 评论(0) 推荐(0) 编辑
摘要: 筛选满足分数大于240的姓名及总分 select name,sum(score) scorefrom(select name,arith_score score from student_scoreunion select name,en_score score from student_score 阅读全文
posted @ 2022-03-01 21:25 玄空2 阅读(649) 评论(0) 推荐(0) 编辑
摘要: mybatis.configuration.map-underscore-to-camel-case=true 阅读全文
posted @ 2022-02-11 23:21 玄空2 阅读(170) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-06-25 15:31 玄空2 阅读(147) 评论(0) 推荐(0) 编辑
摘要: JSON.parse(JSON.stringify(obj)); obj为克隆的对象 阅读全文
posted @ 2021-04-25 19:45 玄空2 阅读(41) 评论(0) 推荐(0) 编辑
摘要: 参考网址 :https://blog.csdn.net/yuzhiqiang_1993/article/details/71215232 1.添加依赖的方法: npm install 依赖组件 --save npm install hammerjs --save --save 就是将要安装的依赖写到 阅读全文
posted @ 2020-12-31 13:31 玄空2 阅读(247) 评论(0) 推荐(0) 编辑
摘要: 修改配置文件 tsconfig.spec.json 在TS文件里导入jquery 方式: import * as $ from 'jquery'; 阅读全文
posted @ 2020-11-18 10:31 玄空2 阅读(89) 评论(0) 推荐(0) 编辑
摘要: <div style="width: 200px;height: 300px;rebeccapurple;text-overflow:ellipsis;overflow:hidden;"> AAAAAAAAAAAAAAAAAAAAAAAAAAAAA </div> 指定宽度 200px,超过此宽度用. 阅读全文
posted @ 2020-11-10 17:25 玄空2 阅读(710) 评论(0) 推荐(0) 编辑
摘要: 安装插件命令 npm i -D karma karma-coverage 修改angular.json的配置文件,为每次运行都创建代码覆盖率报告 "test":{ "options":{ "codeCoverage":true } } 阅读全文
posted @ 2020-11-10 09:35 玄空2 阅读(142) 评论(0) 推荐(0) 编辑