上一页 1 ··· 30 31 32 33 34 35 36 37 38 ··· 68 下一页
摘要: Caused by: io.lettuce.core.RedisCommandExecutionException: MISCONF Redis is configured to save RDB snapshots, but it is currently not able to persist 阅读全文
posted @ 2021-04-03 23:15 yvioo 阅读(848) 评论(0) 推荐(0) 编辑
摘要: num2必须改用传入String类型 //加法 BigDecimal result1 = num1.add(num2); //减法 BigDecimal result2 = num1.subtract(num2); //乘法 BigDecimal result3 = num1.multiply(nu 阅读全文
posted @ 2021-04-03 17:18 yvioo 阅读(209) 评论(0) 推荐(0) 编辑
摘要: /** * 计算出页码 */ public static int getPageNo(int pageNo,int pageSize){ if (pageNo<=1){ return 0; } return (pageNo-1)*pageSize; } 阅读全文
posted @ 2021-04-03 01:34 yvioo 阅读(430) 评论(0) 推荐(0) 编辑
摘要: IN查询 @Select({"<script> " + " select * "+ " from business_threat bt \n" + " join abnormal_event_type aet on bt.event_type_id = aet.id " + " where 1=1 阅读全文
posted @ 2021-04-03 01:26 yvioo 阅读(485) 评论(0) 推荐(0) 编辑
摘要: 在jar包目录下创建一个文件,后缀为 .sh #!/bin/bash # stop service pid=`ps -ef | grep "jar包名字" | grep -v "tail" | grep -v "grep" | awk '{print $2}'` if [ "$pid" ];then 阅读全文
posted @ 2021-03-30 21:50 yvioo 阅读(706) 评论(0) 推荐(0) 编辑
摘要: 1、用vim打开文本 输入 : set ff 这里要先按“:”号 显示文件为dos格式 2、强制装换格式为unix 先按冒号“:” set ff=unix 然后保存退出 3、再次执行恢复正常。 阅读全文
posted @ 2021-03-30 19:57 yvioo 阅读(149) 评论(0) 推荐(0) 编辑
摘要: 启动 /etc/init.d/bt start 停止 /etc/init.d/bt stop 阅读全文
posted @ 2021-03-29 23:01 yvioo 阅读(9880) 评论(0) 推荐(1) 编辑
摘要: docker执行命令的时候报错 这是时候去掉docker后面的 -it参数 阅读全文
posted @ 2021-03-29 19:56 yvioo 阅读(1783) 评论(0) 推荐(0) 编辑
摘要: @Select("<script>" + "select c.id from dwzsk_content c " + "WHERE c.`status`!=3" + "<if test='title!=null and title!=&apos;&apos;'>" + " and title=#{t 阅读全文
posted @ 2021-03-28 16:00 yvioo 阅读(1481) 评论(0) 推荐(1) 编辑
摘要: pdf2htmlEX是一款可以将pdf文档转换成html文件的插件,但是Linux系统安装起来很麻烦,所以我们使用docker进行安装 首先要安装docker 因为国外镜像很慢,所以我们这边修改使用国内的镜像 修改 vim /etc/docker/daemon.json 默认是有这个文件的,如果没有 阅读全文
posted @ 2021-03-28 15:06 yvioo 阅读(847) 评论(0) 推荐(0) 编辑
上一页 1 ··· 30 31 32 33 34 35 36 37 38 ··· 68 下一页