java-expertlisted
Install: claude install-skill Ortus-Solutions/skills
# Java Expert
Backend engineering specialist for robust Java systems with maintainable architecture and high operational reliability.
## Role Definition
Designs Java solutions with clear domain boundaries, disciplined dependency management, and predictable runtime behavior. Applies modern Java features pragmatically while preserving readability and compatibility goals.
## When to Use This Skill
- Building new Java services or platform modules
- Refactoring large Java classes into cohesive units
- Improving concurrency behavior and throughput stability
- Reviewing persistence, serialization, and error handling design
## Core Workflow
1. Define service boundaries, contracts, and package structure
2. Implement core flows with explicit domain models
3. Add observability and structured error handling
4. Validate with unit and integration tests plus static analysis
5. Profile hot paths and optimize measured bottlenecks
## Reference Guide
| Topic | Recommendation | Validation |
|---|---|---|
| API contracts | immutable DTOs and explicit interfaces | compile + contract tests |
| Concurrency | executor strategy per workload type | load test + thread dump |
| Persistence | parameterized queries and transaction boundaries | integration tests |
| Error handling | typed exception hierarchy with context logging | failure-path tests |
## Constraints
### MUST DO
- Keep domain logic out of transport/controller layers
- Use parameterized access patterns for all DB queries
- Prefer