王炸级更新!Spring Boot 3.4 正式发布,新特性真香!

B站影视 2024-12-03 17:35 2

摘要:Spring Boot 3.4 带来了显著的性能提升、可观察性增强和开发体验改进。但在升级过程中,某些变更需要特别注意,以确保应用程序继续正常运行。本指南将深入介绍最重要的变更,并提供代码示例以帮助您顺利完成过渡。

Spring Boot 3.4 带来了显著的性能提升、可观察性增强和开发体验改进。但在升级过程中,某些变更需要特别注意,以确保应用程序继续正常运行。本指南将深入介绍最重要的变更,并提供代码示例以帮助您顺利完成过渡。

# 1. 使用 http-componentsspring.http.client.factory=http-components# 2. 使用 jettySpring.http.client.factory=jetty# 3. 禁用重定向spring.http.client.redirects=dont-follow

这或许是一个对你有用的开源项目,mall项目是一套基于 SpringBoot3 + Vue 的电商系统(Github标星60K),后端支持多模块和 2024最新微服务架构 ,采用Docker和K8S部署。包括前台商城项目和后台管理系统,能支持完整的订单流程!涵盖商品、订单、购物车、权限、优惠券、会员、支付等功能!

Boot项目:

Cloud项目:

视频教程:

项目演示:

修改前:

@ConfigurationProperties(prefix = "pig")@Validatedpublic class GatewayConfigProperties { private SwaggerProperties swagger;}

修改后:

@ConfigurationProperties(prefix = "pig")@Validatedpublic class GatewayConfigProperties { @Valid // 添加此注解 private SwaggerProperties swagger;}

禁用优雅关闭:

server.shutdown=immediateElastic Common Schema (ECS){"@timestamp":"2024-01-01T10:15:00.067462556Z","log.level":"INFO","process.pid":39599,"process.thread.name":"main","service.name":"simple","log.logger":"org.example.Application","message":"No active profile set, falling back to 1 default profile: \"default\"","ecs.version":"8.11"}Graylog Extended Log Format (GELF){"version":"1.1","short_message":"No active profile set, falling back to 1 default profile: \"default\"","timestamp":1725958035.857,"level":6,"_level_name":"INFO","_process_pid":47649,"_process_thread_name":"main","_log_logger":"org.example.Application"}Logstash{"@timestamp":"2024-01-01T10:15:00.111037681+02:00","@version":"1","message":"No active profile set, falling back to 1 default profile: \"default\"","logger_name":"org.example.Application","thread_name":"main","level":"INFO","level_value":20000}

启用 ECS 格式:

# 文件输出使用 ECS 格式logging.structured.format.file=ecs# 控制台输出使用 ECS 格式logging.structured.format.console=ecs# 设置应用程序组spring.application.group=order-processing# 在日志中包含组信息logging.include-application.group=true# 启用 gRPC 传输management.otlp.tracing.transport=grpc# 设置端点management.otlp.tracing.endpoint=grpc://otel-collector:4317

org.springframework.boot spring-boot-starter-parent 3.4.0

@Autowiredprivate MockMvcTester mockMvcTester;@Testvoid testEndpoint throws Exception { mockMvcTester.get("/api/data") .andExpect(status.isOk) .andExpect(jsonPath("$.name").value("Sample Data"));}management.endpoints.enabled-by-default=falsemanagement.endpoint.health.enabled=true

修改后:

management.endpoints.access.default=nonemanagement.endpoint.health.access=read-only

来源:麻辣小王子

相关推荐