上一页 1 ··· 4 5 6 7 8 9 10 11 12 13 下一页
摘要: 日志示例 [INFO] native-maven-plugin:0.9.28:compile (default-cli) @ my-app [INFO] Found GraalVM installation from GRAALVM_HOME variable. [INFO] [graalvm re 阅读全文
posted @ 2024-06-03 15:39 漠孤烟 阅读(296) 评论(0) 推荐(0)
摘要: 对比表: 应用 启动时间(秒) 内存消耗(M) 启动模式 app1(spring boot) + JVM 3.4 183.3 JVM app1(spring boot) + Native 0.44 57.7 native-image 阅读全文
posted @ 2024-06-03 15:21 漠孤烟 阅读(100) 评论(0) 推荐(0)
摘要: 实现RuntimeHintsRegistrar接口,再用hints添加要注册的类型。 eg: @Configuration @ImportRuntimeHints(MyRuntimeHintsRegistrar.class) public class MyRuntimeHintsRegistrar 阅读全文
posted @ 2024-05-31 16:39 漠孤烟 阅读(148) 评论(0) 推荐(0)
摘要: 枚举脱敏字段类型及规则 import java.util.function.Function; public enum TextMaskStrategy { ID_NO("身份证", 18, text -> "*".repeat(text.length() - 4) + text.substring 阅读全文
posted @ 2024-05-30 14:23 漠孤烟 阅读(129) 评论(0) 推荐(0)
摘要: 原因:输出的字符集与源文件字符集不一致 如果源文件为UTF-8 先运行字符集修改命令 chcp 65001 再执行既有命令 2、如果源文件为GB2312/GBK 先运行字符集修改命令 chcp 936 再执行命令 3、如果源文件为BIG5 先运行字符集修改命令 chcp 950 再执行命令 拓展:c 阅读全文
posted @ 2024-05-28 17:49 漠孤烟 阅读(1690) 评论(0) 推荐(0)
摘要: httpServer.createContext("/abc", SimpleFileServer.createFileHandler(Path.of("D:\\my-abc"))); httpServer.createContext("/def", SimpleFileServer.createF 阅读全文
posted @ 2024-05-21 11:19 漠孤烟 阅读(44) 评论(0) 推荐(0)
摘要: 方法:重写MessageConverter, 使得yyyy-MM-dd HH:mm:ss的字符串能反序列化到LocalDateTime类型上。 @Configuration public class HttpClientConfig { @Value("${service.host}") priva 阅读全文
posted @ 2024-05-17 17:06 漠孤烟 阅读(135) 评论(0) 推荐(0)
摘要: 简介 spring cloud loadbalancer是spring自家推出的负载均衡器,可以平替ribbon。 spring cloud loadbalancer + RestClient RestClient是spring framework 6.1(对应spring boot 3.2)里内置 阅读全文
posted @ 2024-04-25 09:58 漠孤烟 阅读(393) 评论(0) 推荐(0)
摘要: 背景 spring boot 3.0使用的spring framework 6.0里有一个全新的http服务调用注解@HttpExchange,该注解的用途是可以进行申明式http远程服务调用。与Feign作用相同,在spring boot 3.x里,由于本身spring内置,相比Feign可以大幅 阅读全文
posted @ 2024-04-25 09:41 漠孤烟 阅读(2740) 评论(2) 推荐(0)
摘要: 1、引入依赖: <dependency> <groupId>com.github.xiaoymin</groupId> <artifactId>knife4j-openapi3-jakarta-spring-boot-starter</artifactId> <version>4.5.0</vers 阅读全文
posted @ 2024-04-19 21:34 漠孤烟 阅读(349) 评论(0) 推荐(0)
上一页 1 ··· 4 5 6 7 8 9 10 11 12 13 下一页