01 2018 档案
摘要:# # COMMON SPRING BOOT PROPERTIES # # This sample file is provided as a guideline. Do NOT copy it in its # entirety to your own application. ^^^ # # #
阅读全文
摘要:1 启动报错 2 初步诊断是slf4j 包冲突了,项目根目录运行 gradle dependencyInsight --dependency slf4j-api 3. 修改build.gradle 文件 4.启动成功。
阅读全文
摘要:有时候为了能理解JVM对程序所做的优化等,需要查看程序的字节码,因此知道了解一些常见的指令集很重要! 指令码 助记符 说明 0x00 nop 什么都不做 0x01 aconst_null 将null推送至栈顶 0x02 iconst_m1 将int型-1推送至栈顶 0x03 iconst_0 将in
阅读全文