06 2024 档案
摘要:https://blog.csdn.net/qq_34254642/article/details/104641591
阅读全文
摘要:3. XShell 无法匹配的outgoing encryption算法 ,No matching outgoing encryption algorithm found 在链接的属性(SSH -> 安全性) 的加密算法列表中选择 aes256-ctr, mac加密列表中选择hmac-sha2-25
阅读全文
摘要:centos7 添加新账户 #!/bin/bash # 新账户的用户名 username=$1 # 添加新账户 useradd $username # 为新账户设置密码,这里需要输入密码,也可以通过stdin来自动设置密码 #echo "$1" | passwd --stdin $username
阅读全文
摘要:vue3 引入 element-ui 报错。 PS E:\ws06\test-new\20240620-syt\syt-01> npm i element-ui@2.3.5 -S npm ERR! code ERESOLVE npm ERR! ERESOLVE unable to resolve d
阅读全文
摘要:背景: 在 bootstrap.yaml 配置 nacos。但是怎么样都注册不上, 然后发现是没有加载 bootstrap.yaml 导致的。 最初以为是 springcloud 版本问题,折腾了1个小时才发现是模块的父工程里面配置的插件 spring-boot-maven-plugin 导致的。
阅读全文
摘要:将对象集合转为字段值的 list List<Integer> countList = videoVisitorVoList.stream().map(VideoVisitorCountVo::getUserCount).collect(Collectors.toList());
阅读全文
摘要:<build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins> <resourc
阅读全文
摘要:easyExcel & poi 比较
阅读全文
摘要:#!/bin/bash MODULE=$1 ENV=$2 IS_PRINT_LOG=$3 PORT=1 case "$MODULE" in "blade-gateway") PORT=8000 ;; "blade-user") PORT=8017 ;; "blade-team") PORT=8016
阅读全文