上一页 1 2 3 4 5 6 7 ··· 41 下一页
摘要: spring发送 content-type=application/x-www-form-urlencoded 和普通请求不太一样。 @FeignClient( name = "ocr-api", url = "${orc.idcard-url}", fallbackFactory = OcrCli 阅读全文
posted @ 2023-07-11 16:03 study_php_java_C++ 阅读(487) 评论(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:53 study_php_java_C++ 阅读(189) 评论(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++ 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 执行命令: mvn help:system 当控制台出现build success时,说明配置生效或正确 阅读全文
posted @ 2023-07-06 11:02 study_php_java_C++ 阅读(92) 评论(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++ 阅读(94) 评论(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++ 阅读(294) 评论(0) 推荐(0) 编辑
摘要: 因为在事务开启时,结果还未提交,锁释放后其他请求会继续进行操作,查询数据库没有结果,会进行新增操作,导致锁无效 所以锁需要在方法外开启 阅读全文
posted @ 2023-06-27 20:22 study_php_java_C++ 阅读(85) 评论(0) 推荐(0) 编辑
摘要: 需要在启动类上加上: @EnableAsync 一个service中调用另一个Service中的异步方法 // 异步后台处理 asyncClueToPoolService.clueToPool(mRule); 另一个类中 @Async public void clueToPool(Rule mRul 阅读全文
posted @ 2023-06-26 16:04 study_php_java_C++ 阅读(314) 评论(0) 推荐(0) 编辑
摘要: 第一种方法:使用转义字符 大于号 > &gt;大于等于号 >= &gt;=小于号 < &lt; 小于等于号 <= &lt;=与 & &amp;双引号 " &quot;单引号 ' &apos; 例子: <if test="beginTimeStr != null"> and file.created_ 阅读全文
posted @ 2023-06-20 11:52 study_php_java_C++ 阅读(4765) 评论(0) 推荐(0) 编辑
摘要: 替换 http://a.com/a/b/c/ss/s.mp3 为 /a/b/c/ss/s.mp3 类似上面可以使用 '^((https|http)?://)?[[:alnum:].-]+\/' select REGEXP_REPLACE('https://pbx-bj-tx07.7moor.com/ 阅读全文
posted @ 2023-06-19 15:34 study_php_java_C++ 阅读(189) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 41 下一页