Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement Onion Architecture pattern #3231

Open
6 tasks
iluwatar opened this issue Mar 30, 2025 · 1 comment
Open
6 tasks

Implement Onion Architecture pattern #3231

iluwatar opened this issue Mar 30, 2025 · 1 comment

Comments

@iluwatar
Copy link
Owner

Description

Onion Architecture is an architectural style that places the domain model (business logic) at the center, surrounded by layers (or “rings”) of application services, and infrastructure or external integrations on the outermost edge. The idea is that all dependencies point inwards toward the core domain, ensuring the business logic remains independent of external frameworks or technologies.

Key Elements

  • Domain Layer (Core): Contains Entities, Value Objects, and domain services. No outward dependencies.
  • Application Layer: Defines use cases and orchestrates domain operations, but still does not depend on external infrastructure.
  • Infrastructure Layer: Implements external concerns (e.g., database access, messaging, user interfaces) and depends on the inner layers.
  • Dependency Flow: Outermost layers can depend on inner layers, but inner layers must not depend on outer layers.

References

  1. Onion Architecture by Jeffrey Palermo (Blog Post)
  2. Java Design Patterns – Contribution Guidelines
  3. Related Reading: Clean Architecture by Robert C. Martin

Acceptance Criteria

  • Create a new module or package named onion-architecture (or similar).
  • Demonstrate a clear layering structure with a central domain model, application logic layer, and an external infrastructure layer.
  • Provide a README (or .md file) describing the pattern, explaining the layering principle, and illustrating code flow.
  • Include a simple example application that shows how domain logic remains independent from external frameworks.
  • Write tests verifying that domain and application layers work without relying on the infrastructure layer.
  • Ensure all code adheres to the project’s style and passes continuous integration checks.
@Sri-Kameswari
Copy link

Please assign it to me.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
Status: In Progress
Development

No branches or pull requests

2 participants