共有 3 篇文章
注解
2022-07-05 - 2023-05-08
🔔 以下内容主要摘录自 廖雪峰老师的博客,具体示例请跳到原文参考。
Spring Boot
2022-07-04 - 2023-02-28

🔔 相关内容请参阅 https://www.liaoxuefeng.com/wiki/1252599548343744/1266265175882464

Spring Boot 是什么?它是一个基于 Spring 的套件,它帮助我们预组装了一系列组件,以便以尽可能少的代码和配置来开发基于 Spring 的 Java 应用程序。

Spring Boot makes it easy to create stand-alone, production-grade Spring based Applications that you can “just run”.
We take an opinionated view of the Spring platform and third-party libraries so you can get started with minimum fuss. Most Spring Boot applications need minimal Spring configuration.
Spring Boot

在 Spring 中,我们使用 xml 文件或是注解来告诉 Spring 如果处理我们的组件。但是你必需给它明确的指令,它才知道如何正确的执行。随着组件数量的增多,配置项变得越来越长,以至于难以维护。所以,有必要让框架为我们做更多的事儿,比如解决依赖的依赖等问题,这就是为什么我们需要 Spring Boot。

Spring Boot 是如何做到这些的呢?下面让我们来慢慢揭开这位“俏姑娘”的面纱 🥰。

Spring
2022-01-19 - 2023-02-28

🔔 摘录自 http://c.biancheng.net/spring/

虽然我们在生产环境中基本上使用 Spring Boot 了,但是深入了解 Spring 是非常必要的,因为它是“地基”。