上一页 1 2 3 4 5 6 ··· 40 下一页
摘要: 安装前配置环境 ES_JAVA_HOME 编辑 /etc/profile ES_JAVA_HOME=/usr/local/java-17 export ES_JAVA_HOME 运行命令生效 source /etc/profile echo $ES_JAVA_HOME 1. 安装 Elasticse 阅读全文
posted @ 2023-09-21 18:49 study_php_java_C++ 阅读(165) 评论(0) 推荐(0) 编辑
摘要: 一、问题描述 很多同学在学习访问学校提供的资源时或者一些小伙伴在公司办公时需要使用VPN。但是当我们关闭VPN后,却发现没有办法正常连接到互联网了。 二、解决步骤 首先,在“控制面板”中打开"网络和共享中心",点击左下角的“Internet选项” 然后,在弹出的Internet属性的窗口中点击"连接 阅读全文
posted @ 2023-08-25 11:02 study_php_java_C++ 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 一、C++参考手册(中文)cppreference https://zh.cppreference.com/ 二、菜鸟教程(中文) https://www.runoob.com/cplusplus/cpp-tutorial.html 三、C++ 的常用库及其文档: 标准模板库(STL) 提供了许多数 阅读全文
posted @ 2023-08-21 13:11 study_php_java_C++ 阅读(130) 评论(0) 推荐(0) 编辑
摘要: 阿里云服务器可以参考: https://help.aliyun.com/document_detail/25451.html CentOS7刚安装时如果选择默认分区设置,则根目录/的分区大小只有50G,swap分区与内存大小一致,其余所有的空间都会放在/home分区下。比如总共200G的磁盘空间情况 阅读全文
posted @ 2023-07-12 17:11 study_php_java_C++ 阅读(396) 评论(0) 推荐(0) 编辑
摘要: spring发送 content-type=application/x-www-form-urlencoded 和普通请求不太一样。 @FeignClient( name = "ocr-api", url = "${orc.idcard-url}", fallbackFactory = OcrCli 阅读全文
posted @ 2023-07-11 16:04 study_php_java_C++ 阅读(251) 评论(0) 推荐(0) 编辑
摘要: 1. ModuleNotFoundError: No module named 'mysql' 需要安装链接驱动, 比如 pip install mysqlclient # 或 pip install pymysql # 或 pip install mysql-connector-python 2. 阅读全文
posted @ 2023-07-11 11:54 study_php_java_C++ 阅读(148) 评论(0) 推荐(0) 编辑
摘要: 清华源仓库 pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple 阿里源仓库 pip config set global.index-url https://mirrors.aliyun.com/pypi/s 阅读全文
posted @ 2023-07-11 11:45 study_php_java_C++ 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 执行命令: mvn help:system 当控制台出现build success时,说明配置生效或正确 阅读全文
posted @ 2023-07-06 11:03 study_php_java_C++ 阅读(80) 评论(0) 推荐(0) 编辑
摘要: 1. 没有maven项目选项: 需要安装maven相关插件: Maven Integration plugin 和 Pipeline Maven Integration Plugin 2.没有SSH配置选项: 需要安装插件: Publish over SSH 3.启动项目时 maven一直报错:这里 阅读全文
posted @ 2023-07-06 10:34 study_php_java_C++ 阅读(67) 评论(0) 推荐(0) 编辑
摘要: WEB开发时,在前端通过get / post 方法传递参数的时候 如果实参附带特殊符号,后端接收到的值中特殊符号就会被转义 比如 ur=ssd& 后端接收的却是 ur=ssd& java中可以使用 org.apache.commons.lang3 包中的 StringEscapeUtils. 阅读全文
posted @ 2023-06-30 16:02 study_php_java_C++ 阅读(192) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 40 下一页