Essentials
Repositories
Repositories are used to interact with the database
Repositories in Orionjs are specialized services that handle data access operations. They follow the repository pattern, which separates data access logic from business logic, making your code more maintainable and testable.
Basic Usage
Repositories use the @Repository
decorator, which is a semantic distinction from @Service
to clarify the component’s purpose:
Why Use Repositories?
While repositories are functionally similar to services (both use dependency injection), they serve different purposes:
- Services handle business logic, orchestration, and use cases
- Repositories focus exclusively on data access and persistence
This separation of concerns leads to:
- Cleaner code organization
- Easier testing
- Better maintainability
- Clearer dependencies
Dependency Injection
Like services, repositories can be injected into other components using the factory function pattern:
Was this page helpful?