{"id":30385274,"url":"https://github.com/bruce-mig/apache-camel-integration","last_synced_at":"2026-05-14T23:35:01.500Z","repository":{"id":296168571,"uuid":"992453029","full_name":"bruce-mig/apache-camel-integration","owner":"bruce-mig","description":"Apache Camel integration with a Spring Boot application","archived":false,"fork":false,"pushed_at":"2025-05-29T08:56:57.000Z","size":13,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-05-29T09:54:48.604Z","etag":null,"topics":["apache-camel","integration-flow","spring-boot"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bruce-mig.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-05-29T07:16:47.000Z","updated_at":"2025-05-29T08:58:08.000Z","dependencies_parsed_at":"2025-05-29T10:06:14.296Z","dependency_job_id":null,"html_url":"https://github.com/bruce-mig/apache-camel-integration","commit_stats":null,"previous_names":["bruce-mig/apache-camel-integration"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/bruce-mig/apache-camel-integration","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bruce-mig%2Fapache-camel-integration","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bruce-mig%2Fapache-camel-integration/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bruce-mig%2Fapache-camel-integration/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bruce-mig%2Fapache-camel-integration/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bruce-mig","download_url":"https://codeload.github.com/bruce-mig/apache-camel-integration/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bruce-mig%2Fapache-camel-integration/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271415496,"owners_count":24755639,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-21T02:00:08.990Z","response_time":74,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["apache-camel","integration-flow","spring-boot"],"created_at":"2025-08-21T02:11:40.363Z","updated_at":"2026-05-14T23:34:56.462Z","avatar_url":"https://github.com/bruce-mig.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Apache Camel Integration\n\nThis repository demonstrates how to integrate [Apache Camel](https://camel.apache.org/) with Spring Boot. All API routes are accessible under the context path `/camel/*`.\n\n## Overview\n\nApache Camel is a powerful open-source integration framework that enables developers to integrate different systems using well-defined enterprise integration patterns (EIPs). In this project, Camel is used to expose RESTful endpoints, making it easy to build, extend, and maintain integration flows.\n\n## Getting Started\n\n### Prerequisites\n\n- Java (17 or above)\n- Maven (for building the project)\n\n### Running the Application\n\n1. Clone this repository:\n   ```bash\n   git clone https://github.com/bruce-mig/apache-camel-integration.git\n   cd apache-camel-integration\n   ```\n2. Build and run the application:\n   ```bash\n   mvn spring-boot:run\n   ```\n3. The REST endpoints will be available at:\n   ```\n   http://localhost:9090/camel/*\n   ```\n\n### Example Endpoints\n\n- `GET /camel/get-orders`  \n  Example response:\n```json\n[\n    {\n        \"id\": 7,\n        \"name\": \"Mobile\",\n        \"price\": 5000.0\n    },\n    {\n        \"id\": 8,\n        \"name\": \"Book\",\n        \"price\": 400.0\n    },\n    {\n        \"id\": 8,\n        \"name\": \"Laptop\",\n        \"price\": 15000.0\n    },\n    {\n        \"id\": 9,\n        \"name\": \"Tablet\",\n        \"price\": 8000.0\n    }\n]\n  ```\n\n- `GET /camel/get-orders`\n```json\n{\n  \"id\": 10,\n  \"name\": \"airpods\",\n  \"price\": 25\n}\n```\n\n## Why Use Apache Camel?\n\n### Pros\n\n- **Integration Patterns:** Implements a rich library of Enterprise Integration Patterns (EIPs) for complex routing, transformation, and mediation scenarios.\n- **Component Ecosystem:** Offers 300+ components to connect to databases, message brokers, cloud services, and more.\n- **Declarative Routing:** Use Java, XML, or DSLs to define routing logic in a readable and maintainable way.\n- **Extensible:** Easily add custom processors, components, and error handling.\n- **Community \u0026 Documentation:** Well-supported with extensive documentation and active community.\n\n### Cons\n\n- **Learning Curve:** The breadth of features and patterns can be daunting for newcomers.\n- **Performance Overhead:** High abstraction may introduce some performance trade-offs compared to hand-crafted integrations.\n- **Complexity in Large Projects:** Projects with hundreds of routes can become complex and harder to manage if not well-structured.\n- **Dependency Management:** Large number of optional components may bloat the project if not managed carefully.\n\n## When to Use Apache Camel\n\nApache Camel excels in scenarios where you need to integrate multiple systems or protocols, especially when complex routing, transformation, or mediation logic is required. For simple REST APIs without integration requirements, lighter frameworks may be more appropriate.\n\n## Resources\n\n- [Apache Camel Documentation](https://camel.apache.org/manual/latest/)\n- [Camel REST DSL](https://camel.apache.org/components/latest/rest-component.html)\n\n---\n\n*Feel free to contribute or raise issues for enhancements!*\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbruce-mig%2Fapache-camel-integration","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbruce-mig%2Fapache-camel-integration","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbruce-mig%2Fapache-camel-integration/lists"}