会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
缘故为何
博客园
首页
新随笔
联系
管理
订阅
上一页
1
2
3
4
5
6
···
9
下一页
2022年1月20日
YOLO基本使用
摘要: 1.准备模型、标签、配置 github地址: https://github.com/AlexeyAB/darknet 下载yolov4.weights 下载cfg/coco.names 下载cfg/yolov4.cfg 2.新建一个项目 3.main.py import cv2 import ran
阅读全文
posted @ 2022-01-20 16:21 缘故为何
阅读(520)
评论(0)
推荐(0)
2022年1月18日
驼峰转下划线 下划线转驼峰
摘要: import java.util.regex.Matcher; import java.util.regex.Pattern; /** * 驼峰转换工具 */ public class HumpUtil { private static Pattern linePattern = Pattern.c
阅读全文
posted @ 2022-01-18 10:56 缘故为何
阅读(234)
评论(0)
推荐(0)
2021年12月17日
mysql因为字符集导致left join出现Using join buffer (Block Nested Loop)
摘要: 1.执行计划 EXPLAIN SELECT * FROM t2 LEFT JOIN t1 ON t1.bill_num = t2.bill_num 这里出现了Using where; Using join buffer (Block Nested Loop) 50w数据查询了一两分钟没有查询出来,到
阅读全文
posted @ 2021-12-17 10:02 缘故为何
阅读(2466)
评论(0)
推荐(0)
2021年12月9日
tesseract安装
摘要: 1.下载tesseract https://digi.bib.uni-mannheim.de/tesseract/ 2.配置环境变量 path D:\Program Files (x86)\Tesseract-OCR TESSDATA_PREFIX变量名 D:\Program Files (x86)
阅读全文
posted @ 2021-12-09 10:46 缘故为何
阅读(179)
评论(0)
推荐(0)
2021年11月22日
JPA忽略更新空值配置
摘要: import org.hibernate.bytecode.enhance.spi.LazyPropertyInitializer; import org.hibernate.engine.spi.SessionImplementor; import org.hibernate.event.inte
阅读全文
posted @ 2021-11-22 19:52 缘故为何
阅读(682)
评论(0)
推荐(0)
springboot项目在所有的controller里加上统一前缀
摘要: import com.oigit.imsapi.common.WebInterceptor; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Confi
阅读全文
posted @ 2021-11-22 19:49 缘故为何
阅读(1731)
评论(0)
推荐(0)
2021年9月24日
java去除下划线并首字母大写
摘要: (将如TEST_TB_KKK_LLLL 转换为 testTbKkkLlll) public static Map<String, Object> zh(Map<String,Object> map) { HashMap<String, Object> newMap = new HashMap<Str
阅读全文
posted @ 2021-09-24 16:24 缘故为何
阅读(758)
评论(0)
推荐(0)
2021年6月23日
yml注入List<Map>
摘要: yml配置文件 robot: list: - name: robot1 url: ws://ip/client file: http://ip/file - name: robot2 url: ws://ip/client file: http://ip/file - name: robot3 ur
阅读全文
posted @ 2021-06-23 11:35 缘故为何
阅读(987)
评论(0)
推荐(0)
2021年5月26日
gitlab持续构建gitlab-cl.yml
摘要: stages: - build build: stage: build only: - dev2.0 script: - mvn clean package - scp -r target/xxx.jar root@ip:/home/xxx-api/ - ssh root@ip "superviso
阅读全文
posted @ 2021-05-26 11:01 缘故为何
阅读(124)
评论(0)
推荐(0)
2021年3月18日
JPA复杂分页查询
摘要: 1.分页查询 public Page<User> page(int pageNo, int pageSize, User user) { Sort sort = new Sort(Sort.Direction.DESC,"createTime"); //创建时间降序排序 Pageable pagea
阅读全文
posted @ 2021-03-18 11:12 缘故为何
阅读(670)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
···
9
下一页
公告