官术网_书友最值得收藏!

  • Spring 5.0 By Example
  • Claudio Eduardo de Oliveira
  • 256字
  • 2021-06-24 19:17:32

Looking under the hood

We have some interesting things here, let's understand them. The @SpringBootApplication is the essential annotation for the Spring Boot application; it's a kind of alias for @Configuration, @EnableAutoConfiguration, and @Component annotations. Let's dig in:

  • The first annotation, @Configuration indicates that the class can produce a beans definitions for the Spring container. This is an interesting annotation to work with external dependencies such as DataSources; this is the most common use case for this annotation.
  • The second annotation, @EnableAutoConfiguration means that with the Spring ApplicationContext container, it will try to help us configure the default beans for the specific context. For instance, when we create the web MVC application with Spring Boot, we will probably need a web server container to run it. In a default configuration, the Spring container, together with @EnableAutoConfiguration, will configure a bean Tomcat-embedded container for us. This annotation is very helpful for developers.
  • The @Component is a stereotype, the container understands which class is considered for auto-detection and needs to instantiate it.

The SpringApplication class is responsible for bootstrapping the Spring application from the main method, it will create an ApplicationContext instance, take care of configurations provided by the configuration files, and finally, it will load the singleton beans that are defined by annotations.

Stereotype Annotations denote a conceptual division in an architecture layer. They help the developers understand the purpose of the class and the layer which the beans represent, for example, @Repository means the data access layer.
主站蜘蛛池模板: 永和县| 石屏县| 天台县| 伊川县| 友谊县| 渑池县| 修武县| 东丽区| 英德市| 溧阳市| 华阴市| 文登市| 丰宁| 吉水县| 阿克苏市| 永城市| 台北县| 阿鲁科尔沁旗| 石泉县| 翁牛特旗| 黄浦区| 宜春市| 金坛市| 佛教| 连城县| 南安市| 濮阳市| 舒城县| 桐庐县| 乌审旗| 铁岭市| 肃宁县| 哈巴河县| 新和县| 砚山县| 板桥市| 巴东县| 滕州市| 友谊县| 武威市| 仙桃市|