fix: SpringBoot4 WebFlux Base64Utils not found

This commit is contained in:
ReaJason
2026-08-21 16:05:48 +08:00
parent f2b9d0ed07
commit 97b30ffa7f
36 changed files with 1589 additions and 10 deletions
@@ -0,0 +1,15 @@
plugins {
id("java")
id("org.springframework.boot") version "4.0.8"
id("io.spring.dependency-management") version "1.1.7"
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
dependencies {
implementation("org.springframework.boot:spring-boot-starter-webflux")
}