2024年7月4日
摘要: 没有 Spring Boot 的情况下,如果我们需要引入第三方依赖,需要手动配置,非常麻烦。但是,Spring Boot 中,我们直接引入一个 starter 即可。比如你想要在项目中使用 redis 的话,直接在项目中引入对应的 starter 即可。 <dependency> <groupId> 阅读全文
posted @ 2024-07-04 14:03 zhengbiyu 阅读(25) 评论(0) 推荐(0) 编辑
摘要: JIT JIT(Just-in-Time,实时编译)一直是Java语言的灵魂特性之一,HotSpot JVM中集成了两种JIT编译器,Client Compiler和Server Compiler,它们的作用也不同。Client Compiler注重启动速度和局部的优化,Server Compile 阅读全文
posted @ 2024-07-04 11:30 zhengbiyu 阅读(46) 评论(0) 推荐(0) 编辑