spring-boot-3-5
π―Skillfrom bitsoex/bitso-java
Upgrades Java Spring Boot projects to version 3.5.9, ensuring comprehensive dependency updates and compatibility with latest Spring ecosystem standards.
Installation
npx skills add https://github.com/bitsoex/bitso-java --skill spring-boot-3-5Skill Details
>
Overview
# Spring Boot 3.5.x Upgrade
Upgrade Java services to Spring Boot 3.5.9 with all required dependency updates.
When to Use
- Project uses Spring Boot 3.4.x or earlier
- Preparing for Spring Boot 4 (stay on latest or latest-1 patch of 3.5.x)
- Need features from Spring Boot 3.5.x
- Preparing for Java 25 upgrade (requires Spring Boot 3.5.x first)
Skill Contents
Sections
- [When to Use](#when-to-use) (L21-L27)
- [Target Versions](#target-versions) (L47-L61)
- [Version Unification](#version-unification) (L62-L67)
- [Quick Start](#quick-start) (L68-L126)
- [References](#references) (L127-L132)
- [Related Command](#related-command) (L133-L136)
- [Related Skills](#related-skills) (L137-L141)
Available Resources
π references/ - Detailed documentation
- [troubleshooting](references/troubleshooting.md)
---
Target Versions
| Component | Version | Notes |
|-----------|---------|-------|
| Spring Boot | 3.5.9 | Latest (min 3.5.9) - preparing for Spring Boot 4 |
| Spring Cloud | 2025.0.0 | Required for Spring Boot 3.5.x |
| Spring Dependency Management | 1.1.7 | Required plugin version |
| Gradle | 9.2.1 | Recommended for all projects |
| JUnit | 5.14.2 | Testing (via BOM) |
| Spock | 2.4-groovy-4.0 | Groovy testing (use -groovy-5.0 for Java 25) |
| JaCoCo | 0.8.14 | Code coverage |
| SonarQube Plugin | 7.2.2.6593 | Code analysis |
| bitso-rds-iam-authn | 2.0.0 | If using RDS IAM |
| bitso-commons-redis | 4.2.1 | If using Redis |
Version Unification
CRITICAL: Ensure Spring Boot version is defined in only ONE place.
See [version-centralization.md](../dependency-management/references/version-centralization.md) for details on avoiding multiple version definitions.
Quick Start
1. Update Version Catalog
```toml
# gradle/libs.versions.toml
[versions]
springBoot = "3.5.9"
springCloud = "2025.0.0" # CRITICAL for 3.5.x compatibility
spock = "2.4-groovy-4.0"
[plugins]
spring-boot = { id = "org.springframework.boot", version.ref = "springBoot" }
spring-dependency-management = { id = "io.spring.dependency-management", version = "1.1.7" }
```
2. Update Gradle Wrapper
```bash
./gradlew wrapper --gradle-version=9.2.1
```
3. Add JUnit Platform Launcher
Required for Gradle 9.x with JUnit 5.11+:
```groovy
subprojects {
plugins.withType(JavaPlugin).configureEach {
dependencies {
testRuntimeOnly libs.junit.platform.launcher
}
}
}
```
4. Update Redis Libraries (if applicable)
Check if project uses Redis:
```bash
grep -r "bitso.commons:redis\|jedis" --include=".gradle" --include=".toml" .
```
If Redis is used, update:
```toml
[versions]
bitso-commons-redis = "4.2.1"
jedis4-utils = "3.0.0"
```
5. Validate
```bash
./gradlew clean build -x test
./gradlew test
```
References
| Reference | Content |
|-----------|---------|
| [references/troubleshooting.md](references/troubleshooting.md) | Common issues and solutions |
Related Command
This skill is referenced by: [/upgrade-to-recommended-versions](../../commands/upgrade-to-recommended-versions.md)
Related Skills
The following skills in this category depend on Spring Boot 3.5.x:
java-25- Java 25 upgrade (requires Spring Boot 3.5.x first)gradle-9- Gradle 9 upgrade patterns
More from this repository10
Configures and manages MCP (Model Context Protocol) server settings across multiple IDEs for seamless integration and development workflow.
Standardizes REST API development in Java Spring by providing authentication, OpenAPI documentation, and RFC-37 service guidelines.
Streamlines PostgreSQL database integration in Java projects by configuring jOOQ code generation, Flyway migrations, and version compatibility.
doc-sync skill from bitsoex/bitso-java
Manages and standardizes Git hooks across repositories, ensuring consistent code quality checks and team-wide hook compliance automatically.
Integrates SonarQube with MCP to enable natural language querying of Java code quality issues, analysis, and quality gate checks.
Centralizes and standardizes Gradle build configurations for Java projects, managing dependencies, version catalogs, and multi-module setups efficiently.
Automates resolution of Dependabot security vulnerabilities in Java/Gradle projects using severity-based processing and dependency verification.
Implements RFC-34 structured logging standards for Java services, enabling JSON-formatted logs with required fields and contextual metadata.
Upgrades Gradle projects from version 8.x to 9.x, ensuring plugin compatibility and supporting Java 25 migration.