因为在conf/server.xml中把webapps做为appBase。可查看server.xml中的如下代码,并注意到appBase="webapps": <Host name="localhost" appBase="webapps" unpackWARs="true" autoDeploy= ...
分类:
移动开发 时间:
2021-01-05 11:08:29
阅读次数:
0
1.定义消息类型 package Common const ( LoginMesType = "LoginMes" LoginResType = "LoginResMes" ) type Message struct { Type string `json:"type"` //消息类型 Data s ...
分类:
其他好文 时间:
2021-01-05 10:59:42
阅读次数:
0
再jsp开发中,比较常用的标签库有3个:核心标签库、格式化标签库、函数标签库。那如何引入这些标签库呢。请看下面: 引入 <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %><%--核心标签--%> <%@ taglib ur ...
分类:
Web程序 时间:
2021-01-01 12:05:34
阅读次数:
0
Springboot项目启动,IDE的控制台报错信息: Unable to infer base url. This is common when using dynamic servlet registration or when the API is behind an API Gateway. ...
分类:
编程语言 时间:
2020-12-30 10:25:19
阅读次数:
0
简介 背景 由于项目需要,需要使用摄像头预览功能,设备型号为海康威视。目前已存在的基于 FFmpeg 的方案延迟都太高,所以项目最终选择基于此方案。 方案 方案选用为基于 WebRTC 的视频即时通讯,它原生支持对 RTP 协议的解码,所以能够做到延迟很低,大概0.2-0.4秒左右,其他方案都有大于 ...
分类:
Web程序 时间:
2020-12-29 11:15:44
阅读次数:
0
"autoload": { "classmap": [ "database" ], "psr-4": { "App\\": "app/" }, "files":[ "app/Common/function.php", "api/qqOauth/qqConnectAPI.php" ] }, 比如我新增 ...
分类:
其他好文 时间:
2020-12-28 10:52:36
阅读次数:
0
1、 sudo apt-get install nfs-kernel-server # 安装 NFS服务器端 sudo apt-get install nfs-common # 安装 NFS客户端 2、添加NFS目录 sudo vim /etc/exports 若需要把 “/nfsroot” 目录设 ...
分类:
系统相关 时间:
2020-12-25 12:51:18
阅读次数:
0
####盒子随内容变大 ###html <div class="shopcar iconfont icon-gouwuche icon-zhankai1"> 我的购物车 <i class="count">8000000</i> </div> ###common.css .shopcar { posi ...
分类:
其他好文 时间:
2020-12-25 12:31:12
阅读次数:
0
from selenium import webdriver # 成功导入第三方包 import time from selenium.webdriver.common.action_chains import ActionChains db = webdriver.Chrome() # 选择浏览器 ...
分类:
其他好文 时间:
2020-12-23 12:33:54
阅读次数:
0
Ubuntu 18.04 彻底卸载MySQL 5.7.31 1. 查看MySQL的依赖项 dpkg --list|grep mysql 2. 卸载 mysql-common sudo apt remove mysql-common 3. 卸载 mysql-server sudo apt autore ...
分类:
数据库 时间:
2020-12-22 13:13:25
阅读次数:
0