1 2 3 4 5 ··· 9 下一页
摘要: List<PvUvBo> filterPvUvMap = pvUvMap.values().stream().collect(Collectors.toList()); Map<String, PvUvBo> pvUvMap = pvUvBoList.stream(). collect(Collec 阅读全文
posted @ 2021-03-13 18:26 启程华夏 阅读(122) 评论(0) 推荐(0) 编辑
摘要: pom <dependency> <groupId>javax.persistence</groupId> <artifactId>javax.persistence-api</artifactId> <optional>true</optional> </dependency> 实体类对象-增加以 阅读全文
posted @ 2021-03-08 10:35 启程华夏 阅读(237) 评论(0) 推荐(0) 编辑
摘要: 1.编辑项目maven 配置文件。 <profile> <id>dev</id> <repositories> <repository> <!-- 增加elastic仓库 --> <id>elasticsearch-releases</id> <url>https://artifacts.elast 阅读全文
posted @ 2020-12-25 11:15 启程华夏 阅读(501) 评论(0) 推荐(0) 编辑
摘要: 1.官网下载node.js(最新版本目前好像只支持win8一样系统,我这里使用的是win7系统) 安装包下载地址: https://nodejs.org/en/download/releases/ 2.安装node.js到系统指定目录,默认安装会指定path环境变量 3.查看对应版本 4.配置全局安 阅读全文
posted @ 2020-12-14 09:45 启程华夏 阅读(2059) 评论(0) 推荐(0) 编辑
摘要: 1.安装 ntpdate工具 yum -y install ntp ntpdate 2.设置系统时间与网络时间同步 ntpdate time.windows.com ntpdate cn.pool.ntp.org 3.查看当前时间 [root@twh ~]# date Tue Dec 8 15:44 阅读全文
posted @ 2020-12-08 15:54 启程华夏 阅读(251) 评论(0) 推荐(0) 编辑
摘要: 1.安装防火墙 apt-get install ufw 2. 查看防火墙规则 ufw status 3.开启防火墙 sudo ufw enable 4.关闭防火墙 sudo ufw disable 5.重启防火墙 sudo ufw reload 6.开启指定tcp端口 allow/deny 22/t 阅读全文
posted @ 2020-12-04 16:25 启程华夏 阅读(1608) 评论(0) 推荐(0) 编辑
摘要: tmpfs这个只需要mount挂载就可以分配一个目录使用内存了,只是一个目录 ramdisk这个是真的分配一个空间,这个分区是可以格式化的(这个格式化是关键) tmpfs卸载再挂载数据会消失,ramdisk卸载再挂载数据还在 二者共同点是,系统重启后,里面的东西会消失 阅读全文
posted @ 2020-12-04 15:08 启程华夏 阅读(313) 评论(0) 推荐(0) 编辑
摘要: 1.获取证书 阿里云或者其他地方获取 2.编辑配置 文件路径:/usr/local/freeswitch/conf/sip_profile/internal/xml 新增 <param name="tls-cert-dir" value="/usr/local/freeswitch/certs"/> 阅读全文
posted @ 2020-12-03 16:07 启程华夏 阅读(2362) 评论(0) 推荐(0) 编辑
摘要: 1.系统版本 [root@fs freeswitch]# uname -a Linux fs 3.10.0-862.el7.x86_64 #1 SMP Fri Apr 20 16:44:24 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux 2.freeswitch版本 阅读全文
posted @ 2020-12-03 15:51 启程华夏 阅读(516) 评论(0) 推荐(0) 编辑
摘要: 1.获取本地媒体 'use strict'; const constraints = window.constraints = { audio: false, video: true }; function handleSuccess(stream) { const video = document 阅读全文
posted @ 2020-11-25 18:06 启程华夏 阅读(103) 评论(0) 推荐(0) 编辑
1 2 3 4 5 ··· 9 下一页