上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 43 下一页
摘要: CentOS7中安装了rabbitmq,操作CLI工具时报如下错误: warning: the VM is running with native name encoding of latin1 which may cause Elixir to malfunction as it expects 阅读全文
posted @ 2021-08-19 17:04 南北12345678 阅读(251) 评论(0) 推荐(0)
摘要: 10:14:40.014 [error] 10:14:40.021 [error] BOOT FAILEDBOOT FAILED10:14:40.021 [error] 10:14:40.021 [error] ERROR: distribution port 25672 in use by rab 阅读全文
posted @ 2021-08-19 16:58 南北12345678 阅读(1526) 评论(0) 推荐(0)
摘要: 安装erlang 由于rabbitmq是基于erlang语言开发的,所以必须先安装erlang。 安装依赖 yum -y install gcc glibc-devel make ncurses-devel openssl-devel xmlto perl wget erlang官网: https: 阅读全文
posted @ 2021-08-19 11:04 南北12345678 阅读(317) 评论(0) 推荐(0)
摘要: 1、下载CentOS7 2、安装步骤 运行虚拟机 选择完install之后不需要管他 设置网络和主机名 可以设置 IPv4 ip地址 子网掩码 默认网关 安装过程大概需要十分钟 接下来的配置基本的都不用管 设置一个名称和密码(开机用的) 安装完成 阅读全文
posted @ 2021-08-16 17:06 南北12345678 阅读(708) 评论(0) 推荐(0)
摘要: 解决:IP地址冲突了,虚拟机换其他IP。我的成功解决 注:很多家用路由器自动分配IP都是从192.168.1.100开始分配,不要使用100-110这个范围的IP就可以了 阅读全文
posted @ 2021-08-05 10:32 南北12345678 阅读(534) 评论(0) 推荐(0)
摘要: 集合 List<DictEntity> dictEntityList = dictService.findByType(6); 取出属性为集合 List<String> stateNameList = dictEntityList.stream().map(DictEntity::getName). 阅读全文
posted @ 2021-07-20 09:34 南北12345678 阅读(10431) 评论(0) 推荐(1)
摘要: rabbitMQ是Erlang语言开发的所以先下载Erlang https://www.erlang.org/downloads 下载到磁盘中 双击安装 配置环境变量 检验 下载RabbitMQ https://www.rabbitmq.com/download.html 双击安装 安装完成后,开始 阅读全文
posted @ 2021-07-18 13:43 南北12345678 阅读(58) 评论(0) 推荐(0)
摘要: 方案一:借助Set的特性进行去重 /** * 去除重复数据 * 由于Set的无序性,不会保持原来顺序 * @param list */ public static List<String> list distinct(List<String> list) { final boolean sta = 阅读全文
posted @ 2021-07-15 14:34 南北12345678 阅读(589) 评论(0) 推荐(0)
摘要: //对字符串数字排序Stream.of("123", "321", "132","312").sorted(Comparator.comparingInt(Integer::parseInt))// 对Object属性排序Stream.of( new Exception("13"), new Exc 阅读全文
posted @ 2021-07-15 14:28 南北12345678 阅读(1555) 评论(0) 推荐(0)
摘要: 1 简介 本文将讲解Java 8 Stream中的两个方法:skip()和limit()。这两个方法是Stream很常用的,不仅各自会被高频使用,还可以组合出现,并能实现一些小功能,如subList和分页等。 2 skip()方法 见名知义,skip()方法用于跳过前面n个元素,然后再返回新的流,如 阅读全文
posted @ 2021-07-15 14:21 南北12345678 阅读(1095) 评论(0) 推荐(0)
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 43 下一页