企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
如下的坐标就是三个场景启动器: ```xml <!-- web场景启动器 --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <!-- test场景启动器 --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> </dependency> <!-- mybatis场景启动器 --> <dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus-boot-starter</artifactId> </dependency> ``` 场景启动器的作用: 1. 自动引入第三方 JAR 包。如 web 场景启动器就自动引入了下面这些 JAR 包。 ![](https://img.kancloud.cn/df/4a/df4a3dcf6185694465b17d79e3df9b58_1626x693.png) 2. 自动配置。例如当你引入 redis 的场景启动器时,再配置 redis 的服务器信息,直接就可以调用模板 RedisTemplate 来访问数据库了。 **** [官方场景启动器](https://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/#appendix.auto-configuration-classes)