分类

链接

2022 年 3 月
 123456
78910111213
14151617181920
21222324252627
28293031  

近期文章

热门标签

新人福利,免费薅羊毛

mysql大数据表加字段改名

select count(0) from product_detection select count(0) from product_detection_latest   create table tmp like product_detection; insert into product_detection_latest select a.id, a.product_id, a.title, a.image_url, a.item_url, a.price, a.rating, a.sub_category, a.reviews_count, a.review_change, a.rank_number, a.country, a.brand, a.source, a.tag, a.category, a.create_time, a.reviews_count_latest, a.rating_latest, a.first_review_day, a.latest_review_day, a.period, a.base...

MySQL 暂无评论 阅读(137)

mysql大数据表添加字段

方案一、 1.创建一个临时的新表,复制旧表的结构 create table `tmp` like `goods`; 2.给新表加上新增的字段 ALTER TABLE `tmp` ADD COLUMN `num` int(10) NOT NULL DEFAULT 0 AFTER `unit`; 3.把旧表的数据复制过来 insert into tmp(id,name,unit) select id,name,unit from goods; 4.重命名 rename table goods to goods_bak; rename table tmp to goods; 方案二、升级MySQL的服务器版本 升级到高版本后 因为引入了新的算法:即时算法 所以会毫秒级别的加字段 不会对业务发布上线造成影响 ...

MySQL 暂无评论 阅读(109)

安装docker-compose(国内高速镜像)

安装docker-compose(国内高速镜像) gihub上下载docker-compose太慢了,下载不动,只能换成国内镜像(daocloud.io)来下载。 下载 for docker(1.13.xx) curl -L https://get.daocloud.io/docker/compose/releases/download/1.25.4/docker-compose-`uname -s`-`uname -m` > /usr/local/bin/docker-compose for docker-ce(17+) curl -L https://get.daocloud.io/docker/compose/releases/download/1.29.2/docker-compose-`uname -s`-`uname -m` > /usr/local/bin/docker-compose for docker-ce(20+) #curl -L...

Docker 暂无评论 阅读(701)

vue3无法使用vue-devtools

const app = createApp(App) .use(router) .use(i18n) .use(lazyPlugin,{ loading:require('@/assets/images/default.png'), // 图片加载时默认图片 error:require('@/assets/images/error.png')// 图片加载失败时默认图片 }) .mount('#app') //add support for vue-devtools const win = window; if(process.env.NODE_ENV === 'development'){ if('__VUE_DEVTOOLS_GLOBAL_HOOK__'inwin){ win.__VUE_DEVTOOLS_GLOBAL_HOOK__ = app; } }

Others 暂无评论 阅读(199)

mac一台电脑配置多个github帐号

需求: 公司的工作使用的github作为远程仓库,故有一个公司邮箱注册的账号,而我自己也有自己的github账号,需要(摸鱼)时也想推送一些代码到私人仓库中. 注意: 此方法也适用于gitlab, gitee等平台. 分析: github上拉代码,推代码有两种方法,一种是使用账号密码的形式,另一种是使用ssh.作为一个懒人,肯定是越省事越好.所以选择ssh的方法. 所以一台电脑需要生成两个ssh_key,分别对应两个账号.   把密钥添加到ssh-agent 把ssh-agent在后台启动 eval "$(ssh-agent -s)"   方法: 1. 进入~/.ssh文件夹,使用ssh-keyg...

Others 暂无评论 阅读(160)

VUE/REACT图表

 datav 介绍 | DataV (jiaminghi.com) echarts https://echarts.apache.org/ ant design for vue(UI)  https://www.antdv.com/ ant design admin  Vue Antd Admin (gitee.io)

前端 暂无评论 阅读(113)

idea智能提示插件

IntelliJ IDEA | Install Tabnine Autocomplete for IntelliJ IDE

JAVA 暂无评论 阅读(107)

JetBrains全系列软件激活教程激活码以及JetBrains系列软件汉化包

2022最新: 激活码:  code1 其它: 如果使用重置脚本依然无法进入工具,可使用以下临时激活码激活,在使用插件:IDEA激活码下载地址:https://www.jihuooo.com/jhm/code1.zip webstorm激活码下载地址:https://www.jihuooo.com/jhm/code2.zip pycharm激活码下载地址:https://www.jihuooo.com/jhm/code3.zip   激活插件: 【请解压】JetBrains 2021.3.x 最新激活插件,可自定义有效_ja-netfilter-v2.2.2 激活教程: IntelliJ IDEA 2021.3.2永久破解激活教程(可自定义有效期,亲测有效) - 码霸霸 (lupf.cn) ...

JAVA 暂无评论 阅读(296)

Springboot整合Nacos(动态改变数据库连接参数)

这个是整合nacos的教程,我在网上找相关文档,都不满意,就自己试了一下,然后分享出来。 1 安装Nacos。 安装很简单,这里就不说啦。直接说整合 2 Springboot中引入Nacos <span class="token comment">&lt;!--nacos--&gt;</span> <span class="token tag"><span class="token punctuation">&lt;</span>dependency<span class="token punctuation">&gt;</span></span> <spa...

Others 暂无评论 阅读(176)

springboot访问静态资源404 —-idea设置问题

springboot 遇到不能访问静态资源的情况 首先springboot 是默认访问static的 引用JS CSS 路径不需要带上static 如果8080直接访问静态资源 404 This application has no explicit mapping for /error, so you are seeing this as a fallback. 出现这种错误 访问controller一般是没问题的 是静态资源没有加载到tomcat中 看了其他帖子有说在properties中配置路径的 其实现在springboot不需要特地配置 默认映射到static了 把Build project automatically这个勾上 ———————————————— 版权声明:本文为CSDN博主「阿拉斯加...

JAVA 暂无评论 阅读(139)