会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
启程华夏
博客园
园子
首页
新随笔
联系
管理
订阅
2021年3月13日
list map互相转换
摘要: List<PvUvBo> filterPvUvMap = pvUvMap.values().stream().collect(Collectors.toList()); Map<String, PvUvBo> pvUvMap = pvUvBoList.stream(). collect(Collec
阅读全文
posted @ 2021-03-13 18:26 启程华夏
阅读(145)
评论(0)
推荐(0)
2021年3月8日
springcloud 返回实体类忽略属性
摘要: pom <dependency> <groupId>javax.persistence</groupId> <artifactId>javax.persistence-api</artifactId> <optional>true</optional> </dependency> 实体类对象-增加以
阅读全文
posted @ 2021-03-08 10:35 启程华夏
阅读(253)
评论(0)
推荐(0)
2020年12月25日
ieda maven加载 XPackTransportClient jar报错
摘要: 1.编辑项目maven 配置文件。 <profile> <id>dev</id> <repositories> <repository> <!-- 增加elastic仓库 --> <id>elasticsearch-releases</id> <url>https://artifacts.elast
阅读全文
posted @ 2020-12-25 11:15 启程华夏
阅读(547)
评论(0)
推荐(0)
2020年12月14日
win搭建vue3.0开发环境
摘要: 1.官网下载node.js(最新版本目前好像只支持win8一样系统,我这里使用的是win7系统) 安装包下载地址: https://nodejs.org/en/download/releases/ 2.安装node.js到系统指定目录,默认安装会指定path环境变量 3.查看对应版本 4.配置全局安
阅读全文
posted @ 2020-12-14 09:45 启程华夏
阅读(2409)
评论(0)
推荐(0)
2020年12月8日
linux同步系统时间
摘要: 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 启程华夏
阅读(270)
评论(0)
推荐(0)
2020年12月4日
UFW防火墙配置
摘要: 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 启程华夏
阅读(1665)
评论(0)
推荐(0)
内存盘tmpfs和ramdisk的区别
摘要: tmpfs这个只需要mount挂载就可以分配一个目录使用内存了,只是一个目录 ramdisk这个是真的分配一个空间,这个分区是可以格式化的(这个格式化是关键) tmpfs卸载再挂载数据会消失,ramdisk卸载再挂载数据还在 二者共同点是,系统重启后,里面的东西会消失
阅读全文
posted @ 2020-12-04 15:08 启程华夏
阅读(340)
评论(0)
推荐(0)
2020年12月3日
freeswitch 配置wss访问
摘要: 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 启程华夏
阅读(3045)
评论(0)
推荐(0)
freeswitch1.8安装
摘要: 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 启程华夏
阅读(567)
评论(0)
推荐(0)
2020年11月25日
WEBRTC 01
摘要: 1.获取本地媒体 'use strict'; const constraints = window.constraints = { audio: false, video: true }; function handleSuccess(stream) { const video = document
阅读全文
posted @ 2020-11-25 18:06 启程华夏
阅读(116)
评论(0)
推荐(0)
下一页
公告