摘要:
本章内容介绍一个Springboot应用程序从Main主入口执行的源码流程解析。 上图: @SpringBootApplication @EnableScheduling//开启定时任务 @MapperScan("com.tky.dao") public class ModelEngineAppli 阅读全文
摘要:
方式一: byte[] array = md.digest(data.getBytes(StandardCharsets.UTF_8)); for (byte item : array) { sb.append(Integer.toHexString((item & 0xFF) | 0x100), 阅读全文