Upgrade to Spring Boot 3.5.5 (#7715)

#### What type of PR is this?

/kind improvement
/area core
/milestone 2.21.x

#### What this PR does / why we need it:

This PR is a regular update for Spring Boot. See https://github.com/spring-projects/spring-boot/releases/tag/v3.5.5 for more.

#### Does this PR introduce a user-facing change?

```release-note
升级依赖 Spring Boot 至 3.5.5
```
pull/7726/head
John Niang 2025-08-29 11:28:14 +08:00 committed by GitHub
parent 956e23dd7f
commit a32cd4b551
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 2 deletions

View File

@ -114,7 +114,10 @@ public class DefaultController<R> implements Controller {
return new SimpleAsyncTaskExecutorBuilder()
.virtualThreads(virtualThreads)
.concurrencyLimit(workerCount)
.taskTerminationTimeout(Duration.ofSeconds(10))
// See https://github.com/spring-projects/spring-framework/issues/35254#issuecomment-3212944107
// for more
// After the problem resolved, we can set the task termination timeout
// .taskTerminationTimeout(Duration.ofSeconds(10))
.threadNamePrefix(name + "-")
.build();
}

View File

@ -39,7 +39,7 @@ apache = ['apache-commons-lang3', 'apache-tika-core']
therapi = ['therapi-runtime-javadoc', 'therapi-runtime-javadoc-scribe']
[plugins]
spring-boot = 'org.springframework.boot:3.5.4'
spring-boot = 'org.springframework.boot:3.5.5'
spring-dependency-management = 'io.spring.dependency-management:1.1.7'
git-properties = 'com.gorylenko.gradle-git-properties:2.5.2'
undercouch-download = 'de.undercouch.download:5.6.0'