摘要: org.springframework.context.annotation.ConflictingBeanDefinitionException: Annotation-specified bean name 'tmdOcrRecordMapper' for bean class [com.ndm 阅读全文
posted @ 2022-01-12 19:24 难忘是想起 阅读(0) 评论(0) 推荐(0)
摘要: <html> <head> <script src="https://ssl.captcha.qq.com/TCaptcha.js"></script> <button onclick="submitFormWithCaptcha()">按钮</button> </head> </html> <sc 阅读全文
posted @ 2022-01-12 18:24 难忘是想起 阅读(0) 评论(0) 推荐(0)
摘要: 实体类 @lombok.Data public class JsonRootBean { private int code; private String message; private Data data; private String trade_no; } @lombok.Data publ 阅读全文
posted @ 2022-01-05 18:47 难忘是想起 阅读(1) 评论(0) 推荐(0)
摘要: 1、最新做了一个经纬度相减获取最大距离的一个需求需要用到两两组合 因为用的是Set<String>所以自己转了一下数组 import java.util.*; public class CombinationUtil { /** * 两两组合不重复(优化版) * 公式: n*(n-1)/(2*1) 阅读全文
posted @ 2021-12-24 18:07 难忘是想起 阅读(0) 评论(0) 推荐(0)
摘要: 错误日志如下 1418 - This function has none of DETERMINISTIC, NO SQL, or READS SQL DATA in its declaration and binary logging is enabled (you *might* want to 阅读全文
posted @ 2021-12-10 10:59 难忘是想起 阅读(0) 评论(0) 推荐(0)
摘要: 1、计算出代码块运行的时间 List<Integer> array = new ArrayList<>(); for (int i = 0; i <20000 ; i++) { array.add(i); } Instant start = Instant.now(); List<Integer> 阅读全文
posted @ 2021-12-01 14:00 难忘是想起 阅读(0) 评论(0) 推荐(0)
摘要: 需要在SpringbootApplication启动类里面写入 @Bean public CorsFilter corsFilter() { final UrlBasedCorsConfigurationSource source = new UrlBasedCorsConfigurationSou 阅读全文
posted @ 2021-11-22 23:41 难忘是想起 阅读(0) 评论(0) 推荐(0)
摘要: 官网mysql:​​​​​​下载地址 mysql8.0的卸载 1、以管理员方式运行cmd 2、输入sc delete mysql 移出mysql服务 (前提是需要配置mysql的环境变量 否则需要进入到mysql目录下才能运行该命令) sc delete mysql 3、清理mysql的注册表 打开 阅读全文
posted @ 2021-10-31 15:37 难忘是想起 阅读(0) 评论(0) 推荐(0)
摘要: 1、List<实体类>根据某个字段返回Set<String>去重 List<LcaTerm> lcaTerms = lcaTermMapper.selectByExample(lcaTermExample); Set<String> collect = lcaTerms.stream().map(L 阅读全文
posted @ 2021-10-30 15:35 难忘是想起 阅读(0) 评论(0) 推荐(0)
摘要: /** * 判断该地址是否包含异常字符(除中英文、阿拉伯数字、#、-、空格、——、_的其他符号),若包含,则返回1,反之返回0; * @param value * @return */ private static int matching(String value) { //自定义符号 value 阅读全文
posted @ 2021-10-22 10:28 难忘是想起 阅读(0) 评论(0) 推荐(0)