Refactor high-complexity React components in Dify frontend. Use when `pnpm analyze-component...
npx skills add mduongvandinh/skills-java-spring --skill "spring-boot-full-stack"
Install specific skill from multi-skill repository
# Description
|
# SKILL.md
name: spring-boot-full-stack
version: 1.0.0
description: |
Complete Java Spring Boot skill set for building enterprise applications.
Includes modular architecture with optional components:
- PostgreSQL database with JPA/Hibernate + Flyway migration
- Redis caching (optional)
- Kafka/RabbitMQ messaging (optional, choose one)
- JWT + OAuth2 authentication (optional OAuth2)
- RBAC authorization (optional)
- TDD with Mockito
- Spec-First Development with OpenSpec
author: Expert Panel (AI Generated)
tags:
- java
- spring-boot
- postgresql
- redis
- kafka
- rabbitmq
- authentication
- security
- tdd
- openspec
triggers:
- "spring boot project"
- "java backend"
- "microservice"
- "api development"
- "enterprise application"
dependencies: []
Spring Boot Full Stack Skill
Overview
This skill provides a complete, modular framework for building Java Spring Boot applications with enterprise-grade features.
Quick Start
# Minimal setup (PostgreSQL + JWT only)
mvn clean install -Pminimal
# With Redis caching
mvn clean install -Dmodule.redis.enabled=true
# Full stack (all modules)
mvn clean install -Pfull-stack
# Run application
mvn spring-boot:run -Dspring-boot.run.profiles=local
Module Selection
| Module | Default | Enable Flag |
|---|---|---|
| PostgreSQL | ON | -Dmodule.postgresql.enabled=true |
| Redis | OFF | -Dmodule.redis.enabled=true |
| Kafka | OFF | -Dmodule.kafka.enabled=true |
| RabbitMQ | OFF | -Dmodule.rabbitmq.enabled=true |
| OAuth2 | OFF | -Dmodule.oauth2.enabled=true |
Development Workflow
- Spec First: Define specifications in
openspec/specs/ - TDD: Write tests first (RED)
- Implement: Write minimal code (GREEN)
- Refactor: Improve code quality
- Archive: Update specs after implementation
Docker Options
# Without Docker (services installed locally)
make dev
# With Docker infrastructure
make dev-docker
# Full Docker deployment
docker compose --profile with-app up -d
Skills Included
Core (Always enabled)
spring-project-init- Project initializationspring-maven-modular- Maven profiles & BOMspring-error-handling- Global exception handlingspring-validation- Request validationspring-logging- Structured loggingspring-testing- Unit + Integration testingspring-tdd-mockito- TDD with Mockitospring-openspec- Spec-First Development
Optional
spring-redis- Redis cachingspring-kafka- Kafka messagingspring-rabbitmq- RabbitMQ messagingspring-oauth2- OAuth2/OIDCspring-rbac- Role-based access controlspring-docker- Docker containerizationspring-api-docs- OpenAPI/Swaggerspring-monitoring- Actuator + Prometheus
File Structure
src/
βββ main/
β βββ java/
β β βββ com/company/app/
β β βββ config/ # Configuration classes
β β βββ controller/ # REST controllers
β β βββ service/ # Business logic
β β βββ repository/ # Data access
β β βββ domain/ # Entities
β β βββ dto/ # Data transfer objects
β β βββ exception/ # Custom exceptions
β β βββ security/ # Security configuration
β βββ resources/
β βββ application.yml
β βββ application-local.yml
β βββ application-dev.yml
β βββ application-prod.yml
β βββ db/migration/ # Flyway migrations
βββ test/
β βββ java/
β βββ com/company/app/
β βββ unit/ # Unit tests
β βββ integration/ # Integration tests
βββ openspec/
βββ AGENTS.md
βββ specs/ # Feature specifications
βββ changes/ # Proposed changes
References
# Supported AI Coding Agents
This skill is compatible with the SKILL.md standard and works with all major AI coding agents:
Learn more about the SKILL.md standard and how to use these skills with your preferred AI coding agent.