spring-boot-starter-jetty版本
时间: 2023-09-05 16:14:49 浏览: 302
Spring Boot Starter Jetty 的版本有很多,具体要看你使用的 Spring Boot 版本。以下是一些常见的版本对应关系:
- Spring Boot 2.4.x 对应的 Jetty 版本是 9.4.31.v20200723。
- Spring Boot 2.3.x 对应的 Jetty 版本是 9.4.28.v20200408。
- Spring Boot 2.2.x 对应的 Jetty 版本是 9.4.20.v20190813。
- Spring Boot 2.1.x 对应的 Jetty 版本是 9.4.12.v20180830。
请注意,这些版本仅供参考,实际使用时仍需根据你的具体需求和 Spring Boot 版本选择适合的 Jetty 版本。你可以通过 Maven 或 Gradle 等构建工具来指定具体的版本。
相关问题
19、 (2.5分)Spring Boot 中集成 Thymeleaf 需要引入哪个依赖A、 spring-boot-starter-freemarker B、 spring-boot-starter-thymeleaf C、 spring-boot-starter-jetty D、spring-boot-starter-tomcat
B、spring-boot-starter-thymeleaf。在Spring Boot中集成Thymeleaf需要引入spring-boot-starter-thymeleaf依赖。这个依赖包含了Thymeleaf模板引擎、Spring的模板引擎抽象层和Spring的模板引擎自动配置等相关组件。其他选项中,A描述的是集成FreeMarker模板引擎的依赖,C和D描述的是集成Web服务器的依赖,都和集成Thymeleaf没有直接关系。
19、(2.5分)Spring Boot 中集成 Freemarker 需要引入哪个依赖 A、spring-boot-starter-thymeleaf B、 spring-boot-starter-jetty C、 spring-boot-starter-freemarker D、spring-boot-starter-tomcat
C、`spring-boot-starter-freemarker`。在Spring Boot中集成Freemarker需要引入`spring-boot-starter-freemarker`依赖,例如:
```xml
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-freemarker</artifactId>
</dependency>
```
这个依赖会自动引入Freemarker的核心依赖`freemarker`,以及Spring Boot提供的Freemarker支持依赖`spring-boot-starter-template`。其他选项中,`spring-boot-starter-thymeleaf`是用于集成Thymeleaf模板引擎的依赖;`spring-boot-starter-jetty`和`spring-boot-starter-tomcat`是用于集成Web容器的依赖,与集成Freemarker无关。
阅读全文