context.embedded.EmbeddedServletContainerFactory 是什么maven依赖
时间: 2023-12-14 07:40:15 浏览: 185
context.embedded.EmbeddedServletContainerFactory 是 Spring Boot 中的一个接口,用于配置嵌入式 Servlet 容器的工厂类。如果你想使用它,需要在 Maven 项目中引入 Spring Boot 的相关依赖,例如:
```xml
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
```
这个依赖会自动引入 Spring Boot 中的 EmbeddedServletContainerFactory 接口以及实现类。如果你只需要使用 EmbeddedServletContainerFactory 接口,可以将依赖范围设置为 provided,避免重复引入依赖,例如:
```xml
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<scope>provided</scope>
</dependency>
```
阅读全文