上一页 1 2 3 4 5 6 7 ··· 10 下一页
摘要: Mysql 修改表编码,字段编码还是以前的 Mysql 修改表编码,字段编码未变 ALTER TABLE `table6` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_bin; -- ALTER TABLE`rented_bill` CHARAC 阅读全文
posted @ 2023-03-27 11:36 BigOrang 阅读(38) 评论(0) 推荐(0) 编辑
摘要: <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.tar 阅读全文
posted @ 2023-03-19 19:42 BigOrang 阅读(23) 评论(0) 推荐(0) 编辑
摘要: import java.lang.annotation.Documented; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.Re 阅读全文
posted @ 2023-02-13 14:11 BigOrang 阅读(55) 评论(0) 推荐(0) 编辑
摘要: 3.x 版本 https://help.sonatype.com/repomanager3/product-information/download#Download-NexusRepositoryManager2OSS 2.x 版本 https://help.sonatype.com/repoma 阅读全文
posted @ 2023-01-28 11:13 BigOrang 阅读(1303) 评论(0) 推荐(0) 编辑
摘要: Q : finally一定执行吗? A :只要进入了try代码块,没有直接断电,使用System.exit(0)退出程序,或者其他原因导致程序down掉. finnaly肯定会执行 Q : try finally 执行顺序 return的结果顺序 如果try和finally同时return。 最终是 阅读全文
posted @ 2022-09-11 13:06 BigOrang 阅读(63) 评论(0) 推荐(0) 编辑
摘要: 以下几种方法都可以 private <T> List<T> mergeOne(Stream<List<T>> listStream) { return listStream.flatMap(List::stream).collect(toList()); } private <T> List<T> 阅读全文
posted @ 2022-08-17 13:48 BigOrang 阅读(1251) 评论(0) 推荐(0) 编辑
摘要: 问题 访问nginx 502 Bad Gateway connect() failed (111: Connection refused)while connecting to upstream 可能的原因1 docker网络问题 docker nginx容器使用的bridge(默认),同时被转发的 阅读全文
posted @ 2022-01-25 16:11 BigOrang 阅读(1538) 评论(0) 推荐(1) 编辑
摘要: public static void main(String[] args) { try { ttt(); } catch (Exception e) { logger.error("err", e); } } public static void ttt() { try { ttt2(); } c 阅读全文
posted @ 2021-12-19 17:14 BigOrang 阅读(373) 评论(0) 推荐(0) 编辑
摘要: 转载自https://www.cnblogs.com/java-spring/p/13168807.html 剔除服务:OUT_OF_SERVICE http://192.168.1.117:8761/eureka/apps/JUPITER-SERVICE/DESKTOP-U4HQ9H5:jupit 阅读全文
posted @ 2021-09-22 16:00 BigOrang 阅读(78) 评论(0) 推荐(0) 编辑
摘要: java.lang.IllegalStateException: failed to req API:/nacos/v1/ns/instance after all servers([10.240.17.74:8848]) tried: failed to req API:10.240.17.74: 阅读全文
posted @ 2021-05-27 10:44 BigOrang 阅读(2320) 评论(3) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 10 下一页