上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 29 下一页
摘要: linux vi/vim 显示行号: :set nu vi/vim 取消显示行号: :set nonu cat /etc/redhat-release && cat /etc/lsb-releaseradhat或centos存在: /etc/redhat-release 这个文件【 命令 cat / 阅读全文
posted @ 2021-03-04 11:46 wangssd 阅读(79) 评论(0) 推荐(0)
摘要: GBK编码范围: x00-xff GBK双字节编码范围x20-x7f ASCIIxa1-xff 中文x80-xff 中文 utf-8编码范围: u4e00-u9fa5 (中文)x3130-x318F (韩文)xAC00-xD7A3 (韩文)u0800-u4e00 (日文) 阅读全文
posted @ 2021-03-04 09:41 wangssd 阅读(93) 评论(0) 推荐(0)
摘要: 转载:https://blog.csdn.net/u012304016/article/details/52813056 Shell脚本中在函数外和函数内定义的变量是都是global(全局)的。 函数外定义的变量其作用域从被定义的地方开始,到shell结束或被显示删除的地方为止。 函数内定义的变量其 阅读全文
posted @ 2021-02-04 15:13 wangssd 阅读(1349) 评论(0) 推荐(1)
摘要: 编译器是将源语言(中高级语言)通过词法分析、语法分析等手段编译为计算机可识别的二进制语言。 阅读全文
posted @ 2021-01-27 09:43 wangssd 阅读(75) 评论(0) 推荐(0)
摘要: 在postgresql9.5以上 提供了conflict() 来判断sql语句插入时,是否发生重复 1. saveOrUpdate实现方式 主键重复后,执行update操作 INSERT INTO user_pages (user_id, page_id, enabled) VALUES (1, 1 阅读全文
posted @ 2021-01-21 09:25 wangssd 阅读(1103) 评论(0) 推荐(0)
摘要: @Null 被注释的元素必须为null @NotNull 被注释的元素不能为null @AssertTrue 被注释的元素必须为true @AssertFalse 被注释的元素必须为false @Min(value) 被注释的元素必须是一个数字,其值必须大于等于指定的最小值 @Max(value) 阅读全文
posted @ 2021-01-15 13:38 wangssd 阅读(561) 评论(0) 推荐(0)
摘要: 1.使用 jdk8 中 stream.distinct().collector 需要重写实体类中的 equals()和hashCode()方法 @Data @EqualsAndHashCode(callSuper = true) @Accessors(chain = true) public cla 阅读全文
posted @ 2021-01-07 15:07 wangssd 阅读(118) 评论(0) 推荐(0)
摘要: 1.计算时间差,精确到秒 出参类型为long Duration.between(startTime,endTime) .toDays() //转为天 .toHours() //转为小时 .toMinutes() //转为分钟 .toMillis()//毫秒 2. 阅读全文
posted @ 2021-01-05 14:13 wangssd 阅读(1141) 评论(0) 推荐(0)
摘要: 如题,过了个周末过来,编写代码时突然发现无法输入中文 解决方法: 1. 关闭idea 2. 找到idea的安装路径: 将原本的jre64文件复制一份,重命名jre642 3.找到jdk安装目录下的jre文件,复制到上图idea的安装目录下并改名为jre64 4. 最后找到jdk安装目录下的jdk > 阅读全文
posted @ 2020-12-28 21:01 wangssd 阅读(18275) 评论(0) 推荐(0)
摘要: 1.普通的html页面获取后端数据,可以通过Ajax向controller层调用接口,获取数据 <script> function test(){ var adata = { "id" : 1, "name" : "老王" }; var data = JSON.stringify(adata); $ 阅读全文
posted @ 2020-12-22 18:50 wangssd 阅读(9233) 评论(0) 推荐(1)
上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 29 下一页