摘要:
##事务 @Resource private TransactionTemplate transactionTemplate; boolean flag = transactionTemplate.execute(status -> { // do ... return true; }); @Tra 阅读全文
摘要:
####到新公司让看代码学习,下载好代码找老员工 要数据库 直接丢给你 ssh -f root@8.111.66.225 -p 8888 -L 3306:rm-2z123456.mysql.rds.aliyuncs.com:3306 -N #####拿到这个先想到时利用navicate ssh链接 阅读全文
摘要:
###使用docker-compose时出现 Interactive shell docker logs 容器id version: "2.0" services: nginx: image: nginx:latest ports: - "80:80" volumes: - ~/Projects/s 阅读全文
摘要:
###golang mysql 错误 sql: unknown driver “mysql“ (forgotten import?) 解决方法 golang中使用gorm连接mysql的时候会报错:sql: unknown driver "mysql" (forgotten import?) 需要在 阅读全文
摘要:
###下载pdf.js 下载 https://gitee.com/lovers_der/pdf.js.git <style> .contract-modal { position: absolute; right: 15%; width: 1000px; overflow: scroll; back 阅读全文
摘要:
##Mysql百万级数据迁移实战笔记 ###方案选择 ###mysqldump迁移 平常开发中,我们比较经常使用的数据备份迁移方式是用mysqldump工具导出一个sql文件,再在新数据库中导入sql来完成数据迁移。试验发现,通过mysqldump导出百万级量的数据库成一个sql文件,大概耗时几分钟 阅读全文
摘要:
###TP5.1 下载安装Redis 配置redis信息 <?php namespace app\common\redis; class RedisHandler { public $provider; //创建实例子 private static $_instance = null; //创建re 阅读全文
摘要:
###date 时间 时间第二个参数0 1970-01-01 时间第二个参数是负数 小于1970-01-01 ###日期比较 strtotime() 转为 时间戳 date("Y-m-d",strtotime("-1 day")); date("Y-m-d",strtotime("-1 month" 阅读全文
摘要:
###array_merge() array_merge() 将一个或多个数组合并起来,一个数组中的值附加在前一个数组的后面。返回作为结果数组 1.字符串键 后面的值会覆盖前面的一个值。 2.数字键,后面的值将不会覆盖原来的值而是附加到后面(数字键会重新分配,总是变成重零开始) 3.如果只给了一个数 阅读全文
摘要:
###设置 config 设置 强制跳转 <VirtualHost *:80> DocumentRoot /usr/local/apache/htdocs/trip/public ServerName 域名 ServerAlias 域名 DirectoryIndex index.php index. 阅读全文