当前位置:   article > 正文

Springboot 3.0_springboot3.0

springboot3.0

一、Springboot3.0介绍

1.1、 Springboot3.0概述

在2022 年 11 月 24 日Spring Boot 3.0 现已正式发布,它包含了 12 个月以来 151 个开发者的 5700 多次代码提交。这是自 4.5 年前发布 2.0 以来,Spring Boot 的第一次重大修订。

它也是第一个支持 Spring Framework 6.0 和 GraalVM 的 Spring Boot GA 版本,同时也是第一个基于Java 17的Spring Boot版本,以Jakarta EE 9为基准并支持Jakarta EE 10。同时借助于GraalVM支持了AOT和Native Image。

官网:Spring | Home

1.2、Springboot3.0特性介绍

  1. 删除的支持

    • ActiveMq

    • EhCache 2

    • Hazelcast 3

    • Atomikos

  2. 删除Spring Boot 2.X中丢弃的内容 在Spring Boot 2.X中不推荐使用的类、方法以及属性,在Spring Boot 3.0 的版本中已经删除了。所以在升级的时候要确保我们没有调用过这些不推荐的内容。

  3. 最低依赖的要求

  4. 兼容问题

    首先要想到的就是Jakarta EE 9 的兼容问题,确保你的项目中的第三方依赖库和你的代码都兼容了Jakarta EE 9,另外还要检查Spring 框架正在使用的第三方依赖jar是否兼容Spring 6

1.3、Springboot3.0 升级以后问题

这将意味着什么?

1.老的开发环境不能运行,需要安装新的开发环境

2.老项目维护成本更高 变成错误的写法: javax.servlet.* ,可参考:Tomcat 中文官网 下载 安装

3.历时约5年全面升级,新机遇开始到来

二、Spring Boot3.0开发环境搭建

2.1、安装 jdk17

下载地址: https://download.oracle.com/java/17/latest/jdk-17_windows-x64_bin.exe

java 17安装与配置

注意:安装Java17后,安装目录下没有jre目录如何解决?

1 、管理员身份进入cmd

2、进入java17安装目录下

3、运行命令:bin\jlink.exe --module-path jmods --add-modules java.desktop --output jre

2.2、修改 idea 的 jdk 环境

2.3、修改 idea 的 maven

File ->Settings -> Build,Execution,Deployment -> Maven (建议使用3.8.x)

、Spring boot 3.0 项目搭建

方式一:通过脚手架方式生成springboot工程,再导入到idea中使用

方式二:手动创建maven工程方式

具体步骤:

3.1 、添加parent坐标

  1. <parent>
  2. <groupId>org.springframework.boot</groupId>
  3. <artifactId>spring-boot-starter-parent</artifactId>
  4. <version>3.0.0</version>
  5. <relativePath/> <!-- lookup parent from repository -->
  6. </parent>

3.2、添加 web 依赖

  1. <dependency>
  2. <groupId>org.springframework.boot</groupId>
  3. <artifactId>spring-boot-starter-web</artifactId>
  4. </dependency>

3.3、添加启动类

  1. @SpringBootApplication
  2. public class App {
  3. public static void main(String[] args) {
  4. SpringApplication.run(App.class,args);
  5. }
  6. }

3.4、遇到问题

在启动的时候出现问题

解决: 修改配置

四、Springboot 新特性

4.1、HTTP Interfaces新特性

在Spring 6.0之前,我们访问第三方服务或者微服务的http接口主要有这些方式:

  • RestTemplate:可同步访问HTTP服务。

  • WebClient:可同步或异步访问HTTP服务。

  • Feign:在微服务架构中(不限于微服务),用声明式的方式访问HTTP服务。

Spring6.0提供HTTP Interfaces新特性,类似于Spring Data的Repository或者Spring Cloud OpenFeign一样,从而更高效实现WebFlux开发。

官网地址 :Redirecting...

操作步骤:

4.1.1、创建Springboot 工程

和上面一样步骤省略

4.1.2、一个在线的REST HTTP服务

"https://jsonplaceholder.typicode.com"。

我们可以对这些资源进行增删查改的操作,本例选用todos资源。

4.1.3、编写客户端和服务端之间的数据传值对象(DTO)

https://jsonplaceholder.typicode.com/todos

根据在线资源服务的数据结构编写DTO

  1. @Data
  2. @AllArgsConstructor
  3. @NoArgsConstructor
  4. public class Todo {
  5. private Long id;
  6. private Long userId;
  7. private String title;
  8. private Boolean completed;
  9. }
4.1.4、编写HTTP客户端
  1. @HttpExchange("/todos")
  2. public interface TodoClient {
  3. @GetExchange("/{todoId}")
  4. Todo getTodo(@PathVariable Integer todoId);
  5. @GetExchange
  6. List<Todo> getTodos();
  7. @PostExchange
  8. Todo save(@RequestBody Todo todo);
  9. }

这里和Spring WebMVC的用法是很类似的,不过它声明的是远程的资源,和Spring Cloud OpenFeign一样。

  • @HttpExchange:最通用的一个注解,在类级别将会被所有方法继承,如基础路径地址;在方法级别,需要指定具体的method类型。相当于@RequestMapping。

  • @GetExchange:HTTP GET请求。相当于@GetMapping。

  • @PostExchange:HTTP POST请求。相当于@PostMapping。

  • @PutExchange:HTTP PUT请求。相当于@PutMapping。

  • @DeleteExchange:HTTP DELETE请求。相当于@DeleteMapping。

  • @PatchExchange:HTTP PATCH请求。相当于@PatchMapping。

4.1.5、注入声明式客户端

通过给 HttpServiceProxyFactory 注入携带目标接口 baseUrl 的的 webclient,实现 webclient 和 http interface 的关联

  1. @Bean
  2. TodoClient demoApi() {
  3. WebClient client = WebClient.builder().baseUrl("https://jsonplaceholder.typicode.com/").build();
  4. HttpServiceProxyFactory factory = HttpServiceProxyFactory.builder(WebClientAdapter.forClient(client)).build();
  5. return factory.createClient(TodoClient.class);
  6. }
4.1.6、controller 加入方法
  1. @RequestMapping("/hello")
  2. public Object hello(Integer id){
  3. return todoClient.getTodo(id);
  4. }

HTTP interfaces使用起来比RestTemplate和WebClient要简单很多,使用声明式类似于OpenFeign的方式进行远程的HTTP资源的调用,但不需要额外引用Spring Cloud OpenFeign,极大的简化了代码和提高了开发效率。

4.2、GraalVM

4.2.1、GraalVM介绍

既然是VM,那肯定也是一个虚拟机,那它跟JVM有关系吗?有一定关系,GraalVM 可以完全取代上面提到的那几种虚拟机,比如 HotSpot。把你之前运行在 HotSpot 上的代码直接平移到 GraalVM 上,不用做任何的改变,甚至都感知不到,项目可以完美的运行。但是 GraalVM 还有更广泛的用途,不仅支持 Java 语言,还支持其他语言。这些其他语言不仅包括嫡系的 JVM 系语言,例如 Kotlin、Scala,还包括例如 JavaScript、Nodejs、Ruby、Python 等,如图。

GraalVM官网: GraalVM

4.2.2、GraalVM Native Image 介绍

GraalVM Native Image 是GraalVM 提供的一种能够将Spring Boot 程序打包成云原生可执行文件的技术,并且比JVM 占用更少的内存和更快的启动速度,非常适合使用容器部署和在Faas平台使用。

与在JVM运行的应用程序不同,GraalVM Native Image需要提前对代码进行编译处理才能创建可执行文件,GraalVM Native Image 的运行不需要提供JVM虚拟机。

GraalVM 文档地址:Getting Started with GraalVM GraalVM Native Image 文档地址:Native Image

4.2.3、软件安装

Windows

1、下载安装包

打开Releases · graalvm/graalvm-ce-builds · GitHub,按照 jdk 下载对应安装包

2、下载完解压

3、配置环境变量

4、并设置 Java_Home

5、安装Visual Studio Build Tools

打开visualstudio.microsoft.com,下载Visual Studio Installer。

选择C++桌面开发,和Windows 11 SDK,然后进行下载和安装,安装后重启操作系统。

6、要使用GraalVM,不能使用普通的windows自带的命令行窗口,得使用VS提供的 x64 Native Tools Command Prompt for VS 2019,如果没有执行C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Auxiliary\Build\vcvars64.bat脚本安装

安装完之后就可以在64 Native Tools Command Prompt for VS 2019中去使用native-image命令去编译了

7、那么可以执行cl.exe,如果是中文,那就得修改为英文。

8、通过Visual Studio Installer来修改,比如:

可能一开始只选择了中文,手动选择英文,去掉中文,然后安装即可。

代码写完之后,就可以在 x64 Native Tools Command Prompt for VS 2019中中,进入到工程目录下,执行mvn -Pnative native:compile 进行编译就可以了,就能在 target 下生成对应的 exe 文件,后续只要运行 exe文件就可以应用了。

9、在项目加入插件

  1. <properties>
  2. <java.version>17</java.version>
  3. <maven.compiler.source>17</maven.compiler.source>
  4. <maven.compiler.target>17</maven.compiler.target>
  5. </properties>
  6. <dependencies>
  7. <dependency>
  8. <groupId>org.springframework.boot</groupId>
  9. <artifactId>spring-boot-starter-web</artifactId>
  10. </dependency>
  11. <dependency>
  12. <groupId>org.springframework.boot</groupId>
  13. <artifactId>spring-boot-starter-webflux</artifactId>
  14. </dependency>
  15. <dependency>
  16. <groupId>org.projectlombok</groupId>
  17. <artifactId>lombok</artifactId>
  18. <optional>true</optional>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-test</artifactId>
  23. <scope>test</scope>
  24. </dependency>
  25. <dependency>
  26. <groupId>io.projectreactor</groupId>
  27. <artifactId>reactor-test</artifactId>
  28. <scope>test</scope>
  29. </dependency>
  30. </dependencies>
  31. <build>
  32. <plugins>
  33. <plugin>
  34. <groupId>org.graalvm.buildtools</groupId>
  35. <artifactId>native-maven-plugin</artifactId>
  36. </plugin>
  37. <plugin>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-maven-plugin</artifactId>
  40. <configuration>
  41. <excludes>
  42. <exclude>
  43. <groupId>org.projectlombok</groupId>
  44. <artifactId>lombok</artifactId>
  45. </exclude>
  46. </excludes>
  47. </configuration>
  48. </plugin>
  49. </plugins>
  50. </build>

10 打开命令窗口

11 把项目拷贝到系统盘然后 cd 到项目目录中

12 执行mvn -Pnative native:compile ,最终打包好的 exe 文件在 target 目录中

Mac 系统**

1、下载 graalvm mac 版本

2、下载解压,配置环境变量

vi .bash_profile

3 、创建项目导入依赖

  1. <properties>
  2. <java.version>17</java.version>
  3. <maven.compiler.source>17</maven.compiler.source>
  4. <maven.compiler.target>17</maven.compiler.target>
  5. </properties>
  6. <dependencies>
  7. <dependency>
  8. <groupId>org.springframework.boot</groupId>
  9. <artifactId>spring-boot-starter-web</artifactId>
  10. </dependency>
  11. <dependency>
  12. <groupId>org.springframework.boot</groupId>
  13. <artifactId>spring-boot-starter-webflux</artifactId>
  14. </dependency>
  15. <dependency>
  16. <groupId>org.projectlombok</groupId>
  17. <artifactId>lombok</artifactId>
  18. <optional>true</optional>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-test</artifactId>
  23. <scope>test</scope>
  24. </dependency>
  25. <dependency>
  26. <groupId>io.projectreactor</groupId>
  27. <artifactId>reactor-test</artifactId>
  28. <scope>test</scope>
  29. </dependency>
  30. </dependencies>
  31. <build>
  32. <plugins>
  33. <plugin>
  34. <groupId>org.graalvm.buildtools</groupId>
  35. <artifactId>native-maven-plugin</artifactId>
  36. </plugin>
  37. <plugin>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-maven-plugin</artifactId>
  40. <configuration>
  41. <excludes>
  42. <exclude>
  43. <groupId>org.projectlombok</groupId>
  44. <artifactId>lombok</artifactId>
  45. </exclude>
  46. </excludes>
  47. </configuration>
  48. </plugin>
  49. </plugins>
  50. </build>

4 、修改 idea 的 jdk 和 maven 目录

jdk 就是 graalvm 的目录 , maven 是 3.8.1目录

5、进入到项目目录执行 mvn -Pnative native:compile

6、进入到 target 去执行./文件名字

访问效果

4.3、自动配置修改

复习自动配置原理

1、在启动类中贴有@SpringBootApplication注解

2、在这个注解的头上贴有EnableAutoConfiguration

3、在这个注解头上导入一个类AutoConfigurationImportSelector

4、在这个类中有一个getCandidateConfigurations()

这个方法之前是加载的 META-INF/spring.factories 信息, 现在在3.0 中加载META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/673944
推荐阅读
相关标签
  

闽ICP备14008679号