JEECG官方推出SpringBoot3分支:
https://github.com/jeecgboot/jeecg-boot/tree/springboot3
本次更新由於屬於破壞式更新,有幾個生態內的元件,無法進行找到平替或無法升級,目前尚不完善,部分功能選擇直接註釋的方式,以下為功能列表
- Online功能
- 積木報表功能
- 儀表盤功能
- spring cloud gateway 的 SentinelFilterContextConfig 過濾器
從 2.7.10升級到3.1.5有以下幾個點需要注意。
除以上三點外,其它都是平滑升級,不過這也只是相對於我們應用Spring Boot的使用者來說。不過對於第二點,屬於是破壞性升級了,需要將專案中參照的javax.servlet替換成jakarta.servlet。
spring boot升級參考檔案:
https://github.com/spring-projects/spring-boot/wiki/Spring-Boot-3.0-Migration-Guide
spring cloud升級參考檔案:
https://docs.spring.io/spring-cloud/docs/current/reference/html/
spring cloud alibaba升級參考檔案:
https://sca.aliyun.com/zh-cn/docs/2022.0.0.0/overview/version-explain
前面講到由於Spring Boot內部的servlet包換掉了,jeecg框架使用shiro以及spring boot整合,所以shiro需要升級,不過還好shiro官方給這個點提供了支援,以下是shiro的升級替換。
需要注意的是,spring boot 3.1.5對jedis的版本做了提升,提升後shiro無法相容,所以只能在專案進行降版本處理。
shiro升級參考檔案:
https://blog.csdn.net/weixin_43492211/article/details/131217344
<!--shiro-->
<dependency>
<groupId>org.apache.shiro</groupId>
<artifactId>shiro-spring-boot-starter</artifactId>
<version>${shiro.version}</version>
<exclusions>
<exclusion>
<groupId>org.apache.shiro</groupId>
<artifactId>shiro-spring</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- shiro-redis -->
<dependency>
<groupId>org.crazycake</groupId>
<artifactId>shiro-redis</artifactId>
<version>${shiro-redis.version}</version>
<exclusions>
<exclusion>
<groupId>org.apache.shiro</groupId>
<artifactId>shiro-core</artifactId>
</exclusion>
<exclusion>
<artifactId>checkstyle</artifactId>
<groupId>com.puppycrawl.tools</groupId>
</exclusion>
</exclusions>
</dependency>
<!-- shiro 無法使用 spring boot 3.X 自帶的jedis,降版本處理 -->
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
<version>2.9.0</version>
</dependency>
<dependency>
<groupId>org.apache.shiro</groupId>
<artifactId>shiro-spring</artifactId>
<classifier>jakarta</classifier>
<version>${shiro.version}</version>
<!-- 排除仍使用了javax.servlet的依賴 -->
<exclusions>
<exclusion>
<groupId>org.apache.shiro</groupId>
<artifactId>shiro-core</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.shiro</groupId>
<artifactId>shiro-web</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- 引入適配jakarta的依賴包 -->
<dependency>
<groupId>org.apache.shiro</groupId>
<artifactId>shiro-core</artifactId>
<classifier>jakarta</classifier>
<version>${shiro.version}</version>
</dependency>
<dependency>
<groupId>org.apache.shiro</groupId>
<artifactId>shiro-web</artifactId>
<classifier>jakarta</classifier>
<version>${shiro.version}</version>
<exclusions>
<exclusion>
<groupId>org.apache.shiro</groupId>
<artifactId>shiro-core</artifactId>
</exclusion>
</exclusions>
</dependency>
knife4j對於spring boot 3.X版本提供了支援,不過相當於spring boot 2.X的版本來說,差異比較大,從springfox轉換成了springdoc,不能做到平滑升級,以下是需要替換的註解列表.
knife4j升級參考檔案:
https://doc.xiaominfo.com/docs/quick-start/start-knife4j-version
@Api
→ @Tag
@ApiIgnore
→ @Parameter(hidden = true)
or @Operation(hidden = true)
or @Hidden
@ApiImplicitParam
→ @Parameter
@ApiImplicitParams
→ @Parameters
@ApiModel
→ @Schema
@ApiModelProperty(hidden = true)
→ @Schema(accessMode = READ_ONLY)
@ApiModelProperty
→ @Schema
@ApiOperation(value = "foo", notes = "bar")
→ @Operation(summary = "foo", description = "bar")
@ApiParam
→ @Parameter
@ApiResponse(code = 404, message = "foo")
→ @ApiResponse(responseCode = "404", description = "foo")
同樣在初始化檔案物件上也有區別,以下前後替換
[@Bean](https://my.oschina.net/bean)
public GroupedOpenApi swaggerOpenApi() {
return GroupedOpenApi.builder()
.group("default")
.packagesToScan("org.jeecg")
.build();
}
[@Bean](https://my.oschina.net/bean)
public OpenAPI customOpenAPI() {
return new OpenAPI()
.info(new Info()
.title("JeecgBoot 後臺服務API介面檔案")
.version("1.0")
.contact(new Contact().name("北京國炬資訊科技有限公司").url("www.jeccg.com").email("[email protected]"))
.description( "後臺API介面")
.termsOfService("NO terms of service")
.license(new License().name("Apache 2.0").url("http://www.apache.org/licenses/LICENSE-2.0.html"))
);
}
// ---------------------------替換後---------------------
[@Bean](https://my.oschina.net/bean)
public GroupedOpenApi swaggerOpenApi() {
return GroupedOpenApi.builder()
.group("default")
.packagesToScan("org.jeecg")
.build();
}
[@Bean](https://my.oschina.net/bean)
public OpenAPI customOpenAPI() {
return new OpenAPI()
.info(new Info()
.title("JeecgBoot 後臺服務API介面檔案")
.version("1.0")
.contact(new Contact().name("北京國炬資訊科技有限公司").url("www.jeccg.com").email("[email protected]"))
.description( "後臺API介面")
.termsOfService("NO terms of service")
.license(new License().name("Apache 2.0").url("http://www.apache.org/licenses/LICENSE-2.0.html"))
);
}
升級的maven地址:
<dependency>
<groupId>com.github.xiaoymin</groupId>
<artifactId>knife4j-openapi3-jakarta-spring-boot-starter</artifactId>
<version>4.3.0</version>
</dependency>
在knife4j 4.X版本中,首次在對swagger檔案與spring cloud gateway進行了整合,提供完整的解決方案,做到了開箱即用,以下是應用案例,在jeecg中也得到了升級。
<dependency>
<groupId>com.github.xiaoymin</groupId>
<artifactId>knife4j-gateway-spring-boot-starter</artifactId>
<version>4.3.0</version>
</dependency>
以下為平滑升級,即更換版本即可,不需要做任何調整,jeecg框架調整如下
<!-- druid -->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid-spring-boot-3-starter</artifactId>
<version>1.2.20</version>
</dependency>
<!-- 動態資料來源 -->
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>dynamic-datasource-spring-boot3-starter</artifactId>
<version>4.1.3</version>
</dependency>
<!-- spring boot-admin -->
<dependency>
<groupId>de.codecentric</groupId>
<artifactId>spring-boot-admin-starter-server</artifactId>
<version>3.0.4</version>
</dependency>