03 2020 档案
摘要:引入微信内置的video组件时,出现如下错误 TypeError: Cannot read property 'elem' of undefined at M (VM4401 WAService.js:2) at VM4401 WAService.js:2 at VM4401 WAService.j
阅读全文
摘要:环境:Linux,tomcat8 1,配置优化 若需登录系统,必须配置tomcat用户,在安装完Tomcat后,进行以下操作: 1.1 在/conf/tomcat-users.xml文件中的<tomcat-users>标签里面添加如下内容 <!-- 修改配置文件,配置tomcat的管理用户 -->
阅读全文
摘要:错误信息如下: 导入数据库失败, Error: Poll error, 导入数据任务(id:528440)异常,错误信息:line 1, column 750: bare " in non-quoted-field 导入数据库失败, Error: Poll error, 导入数据任务(id:5284
阅读全文
摘要:centos7 防火墙操作 1.查看firewalld状态:systemctl status firewalld,如果是dead状态,即防火墙未开启。 2.开启防火墙systemctl start firewalld 3.确认firewalld状态:systemctl status firewall
阅读全文
摘要:<head> <script type="text/javascript"> function checkthis() { var t=document.forms[0].elements[0]; var reg=/^\d+[.]?\d{1,3}$/; alert(reg.test(t.value)
阅读全文
摘要:1,在/root/deltts目录下,创建脚本 vi clearBigtrc03.sh,输入以下脚本。保存并退出 #!/bin/sh find /root/uploadFiles -mmin +30 -name *.mp3 -exec rm {} \; 2,给文件赋予执行权限 chmod 755 c
阅读全文
摘要:
阅读全文
摘要:顶端固定 <view class="page__hd" style="position:fixed; top:0;width: 750rpx;"> </view> 底端固定 <view class="page__hd" style="position:fixed; bottom:0;width: 7
阅读全文
摘要:eclipse server中添加启动项目,提示Project facet Cloud Foundry Standalone Application version 1.0 is not supported,无法添加项目到tomcat容器中。 解决方法: 右键项目,选择Properties
阅读全文
摘要:一、修改maven.xml 1、添加<.packaging>war</.packaging>,打包为war包 <packaging>war</packaging> 2、不使用SpringBoot内置的Tomcat,添加 <dependency> <groupId>org.springframewor
阅读全文
摘要:此案例为Tomcat8 在Tomcat的目录新建cert的文件夹,把在阿里云下载的证书文件拷贝进去,3529_domain.pfx ,password.txt 修改conf目录的server.xml 文件,加入以下配置: <Connector port="443" protocol="org.apa
阅读全文
摘要:yum install openssl yum install openssl-devel
阅读全文
摘要:1,General 2,源码管理 3,构建触发器 4,构建环境 5,Pre Steps 6,Bulid 7,Post Steps Post Steps 执行的命令: #!/bin/bashecho "execute shell start to cp project "cd /usr/soft/vx
阅读全文