starter 是一种服务(或者叫插件) 使得使用某个功能的开发者不需要关注各种依赖库的处理,不需要具体的配置信息,由 Spring Boot 自动通过classpath路径下的类发现需要的 Bean,并织入 bean。 简而言之:组件化开发思维,提高代码复用性,避免重复造轮子!! 知识点 项目命名方式为 [name]-spring-boot-starter (官方命名方...
Web模块:spring-boot-starter-web spring-boot-autoconfigure-1.5.1.RELEASE.jar!/org/springframework/boot/autoconfigure/web 上述jar的web包下,编写了自动配置Web项的逻辑 下面列举常用的几个类 ServerPropertiesAutoConfiguration和ServerProperties,自动配置内嵌Servlet容器 HttpEncodingAutoConfiguration和HttpEncodingProperties...
以下是 Spring Boot 1.4.3.RELEASE 版本中spring-boot-starter-web的依赖项及其功能描述: 这些依赖项共同构成了 Spring Boot 应用中使用 Web 技术(如 REST 和 MVC)的基础,并支持数据验证和 JSON 处理功能。
<artifactId>spring-boot-starter-web</artifactId> <exclusions> <exclusion> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-tomcat</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-st...
spring-boot-starter-web是一个依赖库,Spring Boot 是在 Spring 的基础上创建的一个开原框架,它提供了 spring-boot-starter-web (web场景启动器)来为web开发予以支持。spring-boot-starter-web 为什么提供了嵌入的Servlet容器以及SpringMVC提供了大量自动配置,可以适用于大多数web开发场景。
从上述代码可以发现,spring-boot-starter-web依赖启动器的主要作用是提供Web开发场景所需的底层所有依赖 正是如此,在pom.xml中引入spring-boot-starter-web依赖启动器时,就可以实现Web场景开发,而不需要额外导入Tomcat服务器以及其他Web依赖文件等。当然,这些引入的依赖文件的版本号还是由spring-boot-starter-parent父依赖...
spring:4.3.13AbstractApplicationContext.refresh();// Initialize other special beans in specific context subclasses.onRefresh();//调用下面的方法EmbeddedWebApplicationContext.onRefresh()protectedvoidonRefresh(){super.onRefresh();try{createEmbeddedServletContainer();// 调用 getEmbeddedServletContainer()方法}...
由图2可以看到spring-boot-starters模块包含了SpringBoot内置的各种starter:spring-boot-starter-xxx。由于SpringBoot内置的各种starter太多,以我们常用的spring-boot-starter-web起步依赖来探究好了。 我们首先看下spring-boot-starter-web模块内部结构: 图3 可以看到spring-boot...
千万注意选择2.x的Spring Boot版本 image.png 点击 Finish 就完成 Spring Boot 的项目创建了,在pom....