mvn install:install-file -Dfile=5upay-sdk-java-webox.jar -DgroupId=com.pay -DartifactId=sdk -Dversion=1.0 -Dpackaging=jar -DlocalRepositoryPath=C:\Use ...
分类:
其他好文 时间:
2021-05-25 18:13:36
阅读次数:
0
<?php require_once './vendor/autoload.php'; use PhpAmqpLib\Connection\AMQPStreamConnection; use PhpAmqpLib\Message\AMQPMessage; use PhpAmqpLib\Wire\AM ...
分类:
其他好文 时间:
2021-05-25 18:09:40
阅读次数:
0
mysql相关 1,存储引擎 2,最左原则于命中规则 index(a,b,c) where a=3 只使用了a where a=3 and b=5 使用了a,b where a=3 and b=5 and c=4 使用了a,b,c where b=3 or where c=4 没有使用索引 wher ...
分类:
其他好文 时间:
2021-05-25 18:02:53
阅读次数:
0
<script> function main(config){ // const dbHost = config && config.db && config.db.host; const dbHost =config?.db?.host; console.log(dbHost); // 192.1 ...
分类:
其他好文 时间:
2021-05-25 17:41:36
阅读次数:
0
$(document).ready(function () { function checkKey(evt) { var keyID = (evt.charCode) ? evt.charCode : ((evt.which) ? evt.which : evt.keyCode); alert(ke ...
分类:
Web程序 时间:
2021-05-24 17:17:10
阅读次数:
0
tomcat的安装和启动来源 - 小猴子1024 tomcat的安装 建议大家使用免安装版的tomcat,下载后直接解压即可,解压目录最好不要带有中文和空格。tomcat版本: TOMCAT版本SERVLET/JSP规范JDK版本 tomcat9.X 4.0/TBD 8+ tomcat8.X 3.1 ...
分类:
其他好文 时间:
2021-05-24 17:05:36
阅读次数:
0
dataSet和dataTable是在电脑内存中创建“数据库”和“表” 1、创建内存表的过程 // 1-先用dataSet创建一个名字为“School”的数据库,代码如下: DataSet ds = new DataSet("School"); //2-再创建一张表,表名称为“Student”,最后 ...
分类:
数据库 时间:
2021-05-24 16:12:07
阅读次数:
0
MySQL 支持丰富的日志类型,如下: 事务日志:transaction log 事务日志的写入类型为"追加",因此其操作为"顺序IO";通常也被称为:预写式日志 write ahead logging 事务日志文件: ib_logfile0, ib_logfile1 错误日志 error log ...
分类:
数据库 时间:
2021-05-24 15:37:46
阅读次数:
0
从系统的角度分析影响程序执行性能的因素 一、Linux概念模型 Linux体系结构可以分为两块:a.用户空间:用户空间中包含了,用户的应用程序,C库 b.内核空间:内核空间包括系统调用,内核,以及与平台架构相关的代码Linux系统的核心是内核。内核控制着计算机系统上的所有硬件和软件,在必要时分配硬件 ...
分类:
其他好文 时间:
2021-05-24 15:29:41
阅读次数:
0
创建新用户: create user 'user01'@'127.0.0.1' identified by 'cssss@!'; create user 'user01'@'%' identified by 'cssss@!'; grant all privileges on *.* to 'cbi ...
分类:
其他好文 时间:
2021-05-24 14:53:49
阅读次数:
0