10 2021 档案
摘要:去除解压目录结构使用 --strip-components N 如: 压缩文件text.tar 中文件信息为 src/src1/src2/text.txt 运行 tar -zxvf text.tar --strip-components 1 结果:src1/src2/text.txt 如果运行 ta
阅读全文
摘要:Dockerfile # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed wi
阅读全文
摘要:另一种方式(推荐):https://www.cnblogs.com/pxblog/p/17058417.html 依赖 <dependency> <groupId>org.eclipse.paho</groupId> <artifactId>org.eclipse.paho.client.mqttv
阅读全文
摘要:java -Dxxx=test -jar xxx.jar (放在-jar之前) 属性名不区分大小写 取值:System.getProperty("xxx") spring的@value("${xxx}") java -jar xxx.jar value1=1 value2=2 (放在启动jar包之后
阅读全文
摘要:这里用了第三方的js 官方地址:https://github.com/joewalnes/reconnecting-websocket 引入js reconnecting-websocket.min.js 或者 reconnecting-websocket.js 如果github访问慢 我也上传了一
阅读全文
摘要:依赖(用来复制文件,可以根据自己的来) <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.8.0</version> </dependency> ImageScaleUt
阅读全文
摘要:复制文件(/y 表示不提示确认框,/-y 表示提示是否覆盖确认) echo "复制文件" copy /y D:\apache-zookeeper-3.6.3.tar.gz E:\logs\ echo 脚本执行完成 pause 切换执行命令的目录(表示切换到 E盘logs文件夹下 执行后面的命令) c
阅读全文
摘要:重启Ubuntu,随即长按F9进入grub菜单;在grub菜单中,选择recovery mode,回车确认;在Recovery Menu中,选择“Root Drop to root shell prompt”,回车确认;然后输入root密码,即可进入root shell界面 查找磁盘上大于20MB的
阅读全文
摘要:/** * 获得websocket请求路径前缀(线程安全 速度相对慢) * @param request * @return */ public static String getWebsocketUrl(HttpServletRequest request) { StringBuffer buff
阅读全文
摘要:父级页面:mian.html 子页面1:top.html 子页面2:index.html 页面关系 <div onclick="_top()">调用contentTop页面的alertTop方法</div> <iframe id="contentTop" name="contentTop" fram
阅读全文
摘要:iframe.html 首页 <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device
阅读全文
摘要:官方出了文档:http://doc.ruoyi.vip/ruoyi/document/cjjc.html#%E9%9B%86%E6%88%90mybatis-plus%E5%AE%9E%E7%8E%B0mybatis%E5%A2%9E%E5%BC%BA RuoYi框架默认使用的是Mybatis框架
阅读全文
摘要:我们可以重写一个方法 (function ($) { var oldHTML = $.fn.html; $.fn.formhtml = function () { if (arguments.length) return oldHTML.apply(this, arguments); $("inpu
阅读全文
摘要:聚合函数查询 Mysql可以使用以下方法 QueryWrapper queryWrapper = new QueryWrapper<>(); queryWrapper.select(" IFNULL( max(percent),0) as maxPercent"); Map<String, Inte
阅读全文
摘要:把$velocityCount替换成$foreach.count 例如 #if($foreach.count != $columns.size()),#end
阅读全文
摘要:Traceback (most recent call last): File "docker\api\client.py", line 214, in _retrieve_server_version File "docker\api\daemon.py", line 181, in versio
阅读全文
摘要:Docker Desktop Installer软件默认安装会装在C:\Program Files\Docker的目录下,默认是不能修改的,但是我们可以通过设置软链接的方式把安装默认弄到其他盘 我们先在D盘的 D:\Program Files下创建一个Docker文件夹 然后以管理员身份打开命令窗口
阅读全文