最近使用windows下集成环境的mysql总是无限重启,查看log,只有一个错误:unknown variable 'default-character-set=gbk。 可在所在文件下的my.ini配置文件中, [client]port=3306default-character-set=utf ...
分类:
数据库 时间:
2021-01-21 11:00:30
阅读次数:
0
装完jdk后再安装tomcat 1、创建tomcat文件夹 mkdir /usr/java 2、安装包放入文件夹 mv 文件 /usr/java 3、解压文件 tar -zxvf 文件 ( 4、修改变量 进入tomcat-bin目录 cd tomcat/bin 编辑setclasspath.sh文件 ...
分类:
系统相关 时间:
2021-01-21 10:33:31
阅读次数:
0
1 条件变量 1.1 condition_variable std::condition_variable实际上是一个类,是一个和条件相关的类; condition_variable成员函数: 结合stdunique_lock<stdmutex> 使用 使用规则: wait 使用 void wait ...
分类:
编程语言 时间:
2021-01-16 12:07:32
阅读次数:
0
1 const 对象必须初始化 //error,const 对象必须初始化 //const int num1; 2 const修饰后值不能改变 const int num = 100; //error,const 对象一旦创建就不能再改变 //num = 1000; 默认情况下,const对象仅在该 ...
分类:
其他好文 时间:
2021-01-12 10:59:56
阅读次数:
0
背景:gitee上下载的开源vue项目,本地部署。执行【npm install】时,报错Error: Can't find Python executable "python", you can set the PYTHON env variable。 解决: 网上提供的一个解决办法:管理员身份打开 ...
分类:
编程语言 时间:
2021-01-11 10:40:56
阅读次数:
0
原生页面的基本应用 <!DOCTYPE html><html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <ti ...
分类:
其他好文 时间:
2021-01-06 12:16:26
阅读次数:
0
a、get是用来从服务器上获取数据,而post是用来向服务器传递数据; b、get将表单中数据按照variable=value的形式,添加到action所指向的URL后面,并且两者用"?"连接,变量之间用"&"连接;而post是将表单中的数据放在form的数据体中,按照变量与值对应的方式,传递到ac ...
分类:
其他好文 时间:
2021-01-05 11:36:46
阅读次数:
0
1.概述 OpenFeign是什么 Feign是一个声明式的web服务客户端,让编写web服务客户端变得容易,只需创建一个接口并在接口上添加注解即可 https://github.com/spring-cloud/spring-cloud-openfeign 能干嘛 Feign和OpenFeign两 ...
分类:
编程语言 时间:
2021-01-05 10:40:40
阅读次数:
0
#include <deque> #include <thread> #include <mutex> #include <condition_variable> using namespace std; deque<int> queue; mutex mtx; condition_variable ...
分类:
其他好文 时间:
2020-12-31 12:12:20
阅读次数:
0
1丶错误信息:Missing URI template variable 'memberId' for method parameter of type String 2丶解决方案:路径中的值 要和 @PathVariable 参数定义的 形参名 一致 ...
分类:
其他好文 时间:
2020-12-31 12:04:18
阅读次数:
0