fix: SpringBoot4 WebFlux Base64Utils not found

This commit is contained in:
ReaJason
2026-08-30 21:19:42 +08:00
parent cda6c9f64e
commit c641a92557
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")
}