摘要: 1 常用方法 1.1 获取宽度 width(): 获取content的宽度 innerWidth(): 获取content+padding-left+padding-right的宽度 outerWidth(): 获取content+padding-left+padding-right+border- 阅读全文
posted @ 2020-11-28 18:08 幻竹 阅读(53) 评论(0) 推荐(0) 编辑
摘要: 正则表达式 NFA引擎匹配原理 https://blog.csdn.net/lxcnn/article/details/4304651 贪婪模式与非贪婪模式 http://www.360doc.cn/mip/42405090.html 方法引用 https://www.cnblogs.com/wuh 阅读全文
posted @ 2020-11-15 21:00 幻竹 阅读(79) 评论(0) 推荐(0) 编辑
摘要: 栈 用数组的方式实现 public class ArrayStack { private long[] array; //数组方式实现 private int top; //栈顶 private int size; //栈的容量 public ArrayStack() { //初始化 this(10 阅读全文
posted @ 2020-11-10 22:54 幻竹 阅读(65) 评论(0) 推荐(0) 编辑
摘要: Jackson 将null转成"" @Configuration public class JacksonConfig { @Bean @Primary @ConditionalOnMissingBean(ObjectMapper.class) public ObjectMapper jackson 阅读全文
posted @ 2020-11-01 17:01 幻竹 阅读(117) 评论(0) 推荐(0) 编辑
摘要: logback-spring.xml <?xml version="1.0" encoding="UTF-8"?> <!-- 日志级别从低到高分为TRACE < DEBUG < INFO < WARN < ERROR < FATAL,如果设置为WARN,则低于WARN的信息都不会输出 --> <!- 阅读全文
posted @ 2020-10-30 00:27 幻竹 阅读(120) 评论(0) 推荐(0) 编辑
摘要: 1、前端 2、后端 2.1、pom.xml <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-jpa</artifactId> </dependency> <de 阅读全文
posted @ 2020-10-30 00:22 幻竹 阅读(224) 评论(0) 推荐(0) 编辑
摘要: CSS3动画 https://www.cnblogs.com/jingwhale/p/4641385.html 阅读全文
posted @ 2020-10-21 18:41 幻竹 阅读(55) 评论(0) 推荐(0) 编辑
摘要: 1、优先级 1.1、优先级高低 内联样式 > ID 选择器 > 类选择器 = 属性选择器 = 伪类选择器 > 标签选择器 = 伪元素选择器 > 通用选择器(*) > 继承的样式 1.2、权重 内联样式1000>id选择器100>类选择器10>标签选择器1 权重的进制是并不是十进制,CSS权重进制在I 阅读全文
posted @ 2020-10-21 18:40 幻竹 阅读(109) 评论(0) 推荐(0) 编辑
摘要: ![算法总结](https://img2020.cnblogs.com/blog/1944255/202010/1944255-20201009183618766-1358752211.png) 阅读全文
posted @ 2020-10-09 18:37 幻竹 阅读(93) 评论(0) 推荐(0) 编辑
摘要: 1 定义sql语句 1.1 insert标签 id:唯一的标识符 parameterType:传给此语句的参数的全路径名或别名 1.2 delete标签 id:唯一的标识符 parameterType:传给此语句的参数的全路径名或别名 1.3 update标签 id:唯一的标识符 parameter 阅读全文
posted @ 2020-09-29 22:23 幻竹 阅读(191) 评论(0) 推荐(0) 编辑