2023年10月24日
摘要: # 关闭防火墙 systemctl stop firewalld # 查看防火墙状态 systemctl status firewalld 查看已开放的端口 firewall-cmd --list-ports 开放端口(开放后需要要重载防火墙才生效) firewall-cmd --zone=publ 阅读全文
posted @ 2023-10-24 16:22 upupup-999 阅读(3) 评论(0) 推荐(0) 编辑
  2023年10月18日
摘要: 虚拟机重启自动启动软件脚本 将文件夹内的mysql.sh,redis.sh,solr.sh,tomcat.sh脚本复制虚拟机某个目录,这里以/home目录为例 mysql脚本 #!/bin/sh #chkconfig: 2345 80 90 #description:开机自动启动的脚本程序 echo 阅读全文
posted @ 2023-10-18 17:06 upupup-999 阅读(27) 评论(0) 推荐(0) 编辑
  2023年9月14日
摘要: yum -y install ntp ntpdate time.nist.gov 阅读全文
posted @ 2023-09-14 17:59 upupup-999 阅读(2) 评论(0) 推荐(0) 编辑
  2023年9月8日
摘要: # 位运算符以及其的用途 ### 1. & 按位与运算 "&"是双目*运算符*双目运算符就是有两个操作数 只有当二进制对应位上都是1的时候结果才为1。 | a | b | a&b | | | | | | 1 | 1 | 1 | | 1 | 0 | 0 | | 0 | 1 | 0 | | 0 | 0 阅读全文
posted @ 2023-09-08 16:21 upupup-999 阅读(98) 评论(0) 推荐(0) 编辑
  2023年9月4日
摘要: 1. 关于synchronized synchronized是java中的关键字,可以在需要线程安全的业务场景中进行使用,保证线程安全,它是利用锁机制来实现同步的。 2. synchronized锁对象和锁类 1. 对象锁:每个实例都会有一个monitor对象,即Java对象的锁,类的对象可以有多个 阅读全文
posted @ 2023-09-04 18:09 upupup-999 阅读(9) 评论(0) 推荐(0) 编辑
  2023年7月28日
摘要: 1.给定一个实参,以及期望类型 private <T> T getValueByClass(Object obj, Class<T> cs) { String obj2 = String.valueOf(obj); Object obj3; if (cs.equals(String.class)) 阅读全文
posted @ 2023-07-28 11:15 upupup-999 阅读(26) 评论(0) 推荐(0) 编辑
  2023年7月23日
摘要: 差分数组的主要适用场景是频繁对原始数组的某个区间的元素进行增减。 比如说,我给你输入一个数组 nums,然后又要求给区间 nums[2..6] 全部加 1,再给 nums[3..9] 全部减 3,再给 nums[0..4] 全部加 2,再给... 一通操作猛如虎,然后问你,最后 nums 数组的值是 阅读全文
posted @ 2023-07-23 14:55 upupup-999 阅读(9) 评论(0) 推荐(0) 编辑
  2023年7月14日
摘要: List<String> nullParams = Stream.of( StringUtils.isBlank(client) ? "client" : null, StringUtils.isBlank(redirect) ? "redirect" : null, StringUtils.isB 阅读全文
posted @ 2023-07-14 14:16 upupup-999 阅读(12) 评论(0) 推荐(0) 编辑
  2023年7月11日
摘要: @RestController @RequestMapping("/ClientUserAssist/") public class ClientUserAssistController { @Autowired ClientUserAssistMapper clientUserAssistMapp 阅读全文
posted @ 2023-07-11 17:47 upupup-999 阅读(18) 评论(0) 推荐(0) 编辑
  2023年6月5日
摘要: /** * 字符串模糊匹配 * <p>example: * <p> user* user-add -- true * <p> user* art-add -- false * @param patt 表达式 * @param str 待匹配的字符串 * @return 是否可以匹配 */ publi 阅读全文
posted @ 2023-06-05 11:43 upupup-999 阅读(123) 评论(0) 推荐(0) 编辑