{"id":20332290,"url":"https://github.com/wavemaker/mongodb-connector","last_synced_at":"2026-02-15T16:05:13.738Z","repository":{"id":72173375,"uuid":"276607111","full_name":"wavemaker/mongodb-connector","owner":"wavemaker","description":null,"archived":false,"fork":false,"pushed_at":"2024-10-21T06:47:44.000Z","size":23,"stargazers_count":1,"open_issues_count":2,"forks_count":2,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-06-22T12:07:21.393Z","etag":null,"topics":["wavemaker-connector"],"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/wavemaker.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}},"created_at":"2020-07-02T09:39:36.000Z","updated_at":"2024-10-21T06:47:10.000Z","dependencies_parsed_at":"2024-11-14T20:27:21.105Z","dependency_job_id":"ec29dc44-a07d-4c01-9491-f81a16df3459","html_url":"https://github.com/wavemaker/mongodb-connector","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/wavemaker/mongodb-connector","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wavemaker%2Fmongodb-connector","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wavemaker%2Fmongodb-connector/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wavemaker%2Fmongodb-connector/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wavemaker%2Fmongodb-connector/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wavemaker","download_url":"https://codeload.github.com/wavemaker/mongodb-connector/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wavemaker%2Fmongodb-connector/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29483378,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-15T15:33:17.885Z","status":"ssl_error","status_checked_at":"2026-02-15T15:32:53.698Z","response_time":118,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["wavemaker-connector"],"created_at":"2024-11-14T20:25:52.276Z","updated_at":"2026-02-15T16:05:13.722Z","avatar_url":"https://github.com/wavemaker.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Connector  Introduction\n\nConnector is a Java based backend extension for WaveMaker applications. Connectors are built as Java modules \u0026 exposes java based SDK to interact with the connector implementation.\nEach connector is built for a specific purpose and can be integrated with one of the external services. Connectors are imported \u0026 used in the WaveMaker application. Each connector runs on its own container thereby providing the ability to have it’s own version of the third party dependencies.\n\n## Features of Connectors\n\n1. Connector is a java based extension which can be integrated with external services and reused in many Wavemaker applications.\n1. Each connector can work as an SDK for an external system.\n1. Connectors can be imported once in a WaveMaker application and used many times in the applications by creating multiple instances.\n1. Connectors are executed in its own container in the WaveMaker application, as a result there are no dependency version conflict issues between connectors.\n\n## About mongodb Connector\n\n## Introduction\nMongoDB is an open-source document database and leading NoSQL database.MongoDB is a cross-platform, document oriented database that provides, high performance, high availability, and easy scalability. MongoDB works on concept of collection and document.\n\nThis connector exposes api to connect Mongo db and do all CRUD, query operations on database from WaveMaker application.\n\n## Prerequisite\n\n1. Mogogo DB\n1. Java 1.8 or above\n1. Maven 3.1.0 or above\n1. Any java editor such as Eclipse, Intelij..etc\n1. Internet connection\n\n\n## Build\nYou can build this connector using following command\n```\nmvn clean install\n```\n\n## Deploy\nYou can import connector dist/mongodb.zip artifact in WaveMaker studio application using file upload option.On after uploading into wavemaker, you can update your profile properties such as mongodb host, post and credentials.\n\n\n## Use Mongodb connector in WaveMaker\n\n```\n@Autowired\nprivate MongoDBConnector mongoDBConnector;\n\nString collectionName = \"employee\";\nmongoDBConnector.createCollection(collectionName);\n\nEmployee employee = new Employee();\nemployee.setEmpId(106);\nemployee.setEmpName(\"Bobs\");\nemployee.setEmpdesignation(\"Eng\");\n\nmongoDBConnector.addDocument(collectionName, employee);\n\nEmployee emp = (Employee) mongoDBConnector.findDocument(collectionName, eq(\"empid\", 106), Employee.class);\nAssert.assertEquals(\"Employee name is not matching\", \"Bobs\", emp.getEmpName());\n\n```\n\nApart from above apis, there are multiple apis exposed in this connector to intract with mongo database.Please visit connector interface in api module.\n\n\n\n\n\n\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwavemaker%2Fmongodb-connector","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwavemaker%2Fmongodb-connector","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwavemaker%2Fmongodb-connector/lists"}