码迷,mamicode.com
首页 >  
搜索关键字:sysgen variable    ( 3898个结果
Windows下的mysql获取my.ini配置文件位置的顺序
最近使用windows下集成环境的mysql总是无限重启,查看log,只有一个错误:unknown variable 'default-character-set=gbk。 可在所在文件下的my.ini配置文件中, [client]port=3306default-character-set=utf ...
分类:数据库   时间:2021-01-21 11:00:30    阅读次数:0
linux安装tomcat
装完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
c++多线程基础三 --- 同步并发
1 条件变量 1.1 condition_variable std::condition_variable实际上是一个类,是一个和条件相关的类; condition_variable成员函数: 结合stdunique_lock<stdmutex> 使用 使用规则: wait 使用 void wait ...
分类:编程语言   时间:2021-01-16 12:07:32    阅读次数:0
const和constexpr修饰符
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
报错:[stack Error: Can't find Python executable "python"] vue项目npm install
背景: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
get和post的区别?
a、get是用来从服务器上获取数据,而post是用来向服务器传递数据; b、get将表单中数据按照variable=value的形式,添加到action所指向的URL后面,并且两者用"?"连接,变量之间用"&"连接;而post是将表单中的数据放在form的数据体中,按照变量与值对应的方式,传递到ac ...
分类:其他好文   时间:2021-01-05 11:36:46    阅读次数:0
05.SpringCloud OpenFeign (服务接口调用)
1.概述 OpenFeign是什么 Feign是一个声明式的web服务客户端,让编写web服务客户端变得容易,只需创建一个接口并在接口上添加注解即可 https://github.com/spring-cloud/spring-cloud-openfeign 能干嘛 Feign和OpenFeign两 ...
分类:编程语言   时间:2021-01-05 10:40:40    阅读次数:0
condition
#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
Missing URI template variable 'memberId' for method parameter of type String
1丶错误信息:Missing URI template variable 'memberId' for method parameter of type String 2丶解决方案:路径中的值 要和 @PathVariable 参数定义的 形参名 一致 ...
分类:其他好文   时间:2020-12-31 12:04:18    阅读次数:0
3898条   上一页 1 ... 6 7 8 9 10 ... 390 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!