在mysql命令行:show variables like '%general%'; mysql> show variables like '%general%';+ + +| Variable_name | Value |+ + +| general_log | OFF || general_lo ...
分类:
数据库 时间:
2021-05-24 15:13:16
阅读次数:
0
查看 yarn 全局安装目录:yarn global dir 全局安装:yarn global add XX 安装到dev:yarn add XX -dev 安装所有:yarn install (会优先安装 yarn.lock 文件里面的内容) 更新 yarn upgrade XX (会将包更新到最 ...
分类:
其他好文 时间:
2021-05-24 14:32:34
阅读次数:
0
这里的Qstring字符串输出的内容,一开始没有看的懂,在经过补习计算机相关输出知识后,就一下子懂了,其实这个很简单,话不多说,上程序,还是上一个文章的程序。 ColorItem::ColorItem() : color(QRandomGenerator::global()->bounded(256 ...
分类:
其他好文 时间:
2021-05-24 14:28:22
阅读次数:
0
1.git下载与安装 https://gitforwindows.org/ 一般一直下一步即可 任务栏 打开Git Bash,输入: # 配置用户名 git config --global user.name "username" //( "username"是自己的账户名,) # 配置邮箱 git ...
分类:
Web程序 时间:
2021-05-24 13:46:15
阅读次数:
0
原项目系统中已经引入了 Mybatis 和 pagehelper ,当引入Mybatis-plus 后启动项目报错 SqlSessionFactory 错误,排查原因后为依赖冲突导致,需排除部分jar包 1. Mybatis中 <dependency> <groupId>tk.mybatis</gr ...
分类:
编程语言 时间:
2021-05-24 12:59:05
阅读次数:
0
npm install -g @vue/cli npm uninstall -g @vue/cli yarn global add @vue/cli yarn global remove @vue/cli 首先确定你的是npm安装的还是yarn安装的,要用对应的卸载方式 如果还是卸载不成功,那么有以 ...
分类:
系统相关 时间:
2021-05-24 10:59:47
阅读次数:
0
Connection conn = DriverManager.getConnection(dbURL, properties); if (conn != null) { Statement statement = conn.createStatement(); ResultSet resultSe ...
分类:
数据库 时间:
2021-05-24 10:40:20
阅读次数:
0
设置 http 代理 socks5 协议代理 git config --global http.proxy 'socks5://127.0.0.1:10808' git config --global https.proxy 'socks5://127.0.0.1:10808' http / htt ...
分类:
其他好文 时间:
2021-05-24 08:22:53
阅读次数:
0
Global Filters GlobalFilter接口方法和GatewayFilter是一样的,GlobalFilter特别之处在于它的作用是全局的。 1. Combined Global Filter and GatewayFilter Ordering 当请求到来时,Filtering We ...
分类:
其他好文 时间:
2021-05-24 08:20:27
阅读次数:
0
1、Form连接数据库apps/apps@TEST 2、plsql模拟界面环境(初始化)8008初始化begin fnd_global.APPS_INITIALIZE(user_id => 1671,resp_id =>50716 ,resp_appl_id => 401); mo_global.i ...
分类:
数据库 时间:
2021-05-24 07:15:58
阅读次数:
0