上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 41 下一页

2023年3月27日

ERROR Failed to compile with 541 errors 11:27:44 These dependencies were not found: * core-js/modules/es.array.concat.js in ./node_modules/cache-loader/dist/cjs.js??ref--12-0!./

摘要: ERROR Failed to compile with 541 errors 11:27:44 These dependencies were not found: * core-js/modules/es.array.concat.js in ./node_modules/cache-loade 阅读全文

posted @ 2023-03-27 11:43 何苦-> 阅读(1730) 评论(0) 推荐(0)

解决:Error running 'Tomcat 8.5.84': Unable to open debugger port (127.0.0.1:12288): java.net.SocketException "Interrupted function call: accept failed"

摘要: 启动项目的时候,tomcat报错,错误内容是 Error running 'Tomcat 8.5.84': Unable to open debugger port (127.0.0.1:12288): java.net.SocketException "Interrupted function c 阅读全文

posted @ 2023-03-27 10:53 何苦-> 阅读(810) 评论(0) 推荐(0)

2023年3月23日

JAVA中循环删除list中元素的方法总结

摘要: 印象中循环删除list中的元素使用for循环的方式是有问题的,但是可以使用增强的for循环,然后今天在使用时发现报错了,然后去科普了一下,再然后发现这是一个误区。下面就来讲一讲。。伸手党可直接跳至文末。看总结。。 JAVA中循环遍历list有三种方式for循环、增强for循环(也就是常说的forea 阅读全文

posted @ 2023-03-23 19:29 何苦-> 阅读(444) 评论(0) 推荐(0)

java:字符串的split方法,使用多个分隔符,分割一个字符串

摘要: @org.junit.Test public void test02() { String param = "张三;李四,拿破仑,王五;曹操 | 马六"; String[] split = param.split(";|,|;|,|\\|"); for (String s : split) { Sy 阅读全文

posted @ 2023-03-23 18:31 何苦-> 阅读(99) 评论(0) 推荐(0)

Spring Cloud Config 本地配置覆盖远程配置

摘要: Spring Cloud Config 配置的优先级 远程配置 > 本地配置 > java代码配置 当需要本地配置优先时,可以限制远程配置的优先级 配置 spring: cloud: config: allow-override: true override-none: true override- 阅读全文

posted @ 2023-03-23 18:04 何苦-> 阅读(507) 评论(0) 推荐(0)

2023年3月22日

rabbitmq集群

摘要: 下载的镜像创建和启动容器 docker run --name rabbitmq \ # 主机名(RabbitMQ的一个重要注意事项是它根据所谓的 “节点名称” 存储数据,默认为主机名) --hostname myRabbit \ # 5672:应用访问端口 -p 5672:5672 \ # 1567 阅读全文

posted @ 2023-03-22 19:06 何苦-> 阅读(39) 评论(0) 推荐(0)

网卡 修改IP及MAC地址

摘要: 1、 首先进入原系统,使用命令查看网卡信息 ifconfig 查看eth0网卡的IP及MAC地址 vi /etc/sysconfig/network-scripts/ifcfg-eth0 2、 编辑网卡设备 vi /etc/udev/rules.d/70-persistent-net.rules 前 阅读全文

posted @ 2023-03-22 19:03 何苦-> 阅读(562) 评论(0) 推荐(0)

CentOS7默认的防火墙不是iptables,而是firewalle.

摘要: CentOS7默认的防火墙不是iptables,而是firewalle. 安装iptable iptable-service #先检查是否安装了iptables service iptables status #安装iptables yum install -y iptables #升级iptabl 阅读全文

posted @ 2023-03-22 18:56 何苦-> 阅读(59) 评论(0) 推荐(0)

crontab 常用 注意使用角色与权限

摘要: crontab常用命令。 crontab -u //设定某个用户的cron服务,一般root用户在执行这个命令的时候需要此参数 crontab -l //列出某个用户cron服务的详细内容 crontab -r //删除没个用户的cron服务 crontab -e //编辑某个用户的cron服务 c 阅读全文

posted @ 2023-03-22 18:32 何苦-> 阅读(973) 评论(0) 推荐(0)

2023年3月13日

orcale 数据 同比 环比

摘要: 日同比 select aa.total 今年销售金额, aa.sale 今年销售金额进货, aa.re 今年销售金额退货, bb.total 去年销售金额, bb.sale 去年销售金额进货, bb.re 去年销售金额退货 from ( select 1 num, nvl(SUM(L_y.ntota 阅读全文

posted @ 2023-03-13 15:08 何苦-> 阅读(74) 评论(0) 推荐(0)

上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 41 下一页

导航