{"id":26899692,"url":"https://github.com/hzpz/mongeez-spring-boot-starter","last_synced_at":"2026-04-02T02:04:52.825Z","repository":{"id":35742747,"uuid":"40021729","full_name":"hzpz/mongeez-spring-boot-starter","owner":"hzpz","description":"Spring Boot Starter for Mongeez","archived":false,"fork":false,"pushed_at":"2020-01-07T15:58:20.000Z","size":51,"stargazers_count":16,"open_issues_count":1,"forks_count":10,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-06-12T20:08:02.658Z","etag":null,"topics":["database","mongeez","spring-boot","spring-data-mongo"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hzpz.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-07-31T19:34:17.000Z","updated_at":"2022-06-26T09:03:07.000Z","dependencies_parsed_at":"2022-08-18T06:29:33.716Z","dependency_job_id":null,"html_url":"https://github.com/hzpz/mongeez-spring-boot-starter","commit_stats":null,"previous_names":["hzpz/spring-boot-autoconfigure-mongeez"],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/hzpz/mongeez-spring-boot-starter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hzpz%2Fmongeez-spring-boot-starter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hzpz%2Fmongeez-spring-boot-starter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hzpz%2Fmongeez-spring-boot-starter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hzpz%2Fmongeez-spring-boot-starter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hzpz","download_url":"https://codeload.github.com/hzpz/mongeez-spring-boot-starter/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hzpz%2Fmongeez-spring-boot-starter/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":260251661,"owners_count":22981095,"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","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":["database","mongeez","spring-boot","spring-data-mongo"],"created_at":"2025-04-01T06:04:16.351Z","updated_at":"2026-04-02T02:04:52.777Z","avatar_url":"https://github.com/hzpz.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"![Maven Central](https://img.shields.io/maven-central/v/io.github.hzpz.spring.boot/mongeez-spring-boot-starter.svg)\n[![Build Status](https://travis-ci.org/hzpz/mongeez-spring-boot-starter.svg?branch=master)](https://travis-ci.org/hzpz/mongeez-spring-boot-starter)\n[![Codacy Badge](https://api.codacy.com/project/badge/grade/e518c6a5031143fda2a6348fb90bfe55)](https://www.codacy.com/app/mailantimo/mongeez-spring-boot-starter)\n\n# Spring Boot Starter for Mongeez\n[Mongeez][mongeez] is a change management tool for Mongo databases. \nThis project is a [starter][spring-boot-starter] for Spring Boot that can automatically configure Mongeez and run migration scripts.\nThe auto-configuration makes sure that the migrations happen before any Spring Data Mongo beans are initialized.\n\n## Usage\n * Make sure Spring Data Mongo is configured properly. \n * Add dependency to the Mongeez Spring Boot starter:\n\n\u003c!-- --\u003e\n    \u003cdependency\u003e\n        \u003cgroupId\u003eio.github.hzpz.spring.boot\u003c/groupId\u003e\n        \u003cartifactId\u003emongeez-spring-boot-starter\u003c/artifactId\u003e\n        \u003cversion\u003e2.0.1\u003c/version\u003e\n    \u003c/dependency\u003e\n\n * [Create a mongeez.xml file that includes all change logs][mongeez.xml] at `db/mongeez.xml`.\n \n## Configuration\nMongeez can be configured by setting properties with the prefix `mongeez` or by using the `MongeezProperties` bean directly.\n\n### Disable auto-configuration\nTo disable the auto-configuration of Mongeez completely, set the property `mongeez.enabled` to `false`.\n\n### Location of migration script\nThe default expected location of the migration script (see [Create a mongeez.xml file that includes all change logs][mongeez.xml])\nis `db/mongeez.xml`. The simplest way to override the location is by setting the property `mongeez.location`.\n\n### Database\nBy default, the auto-configuration will configure Mongeez to use the same database that is configured for Spring Data Mongo\n(either by setting the property `spring.data.mongodb.database` or by using the `MongoProperties` bean directly). Override \nthe database by setting the property `mongeez.database`.\n\n### Authentication\nIf the database requires authentication you need to set username and password twice, for Spring Data Mongo and for Mongeez\n(either by setting the properties `mongeez.username` and `mongeez.password` or by using the `MongeezProperties` bean directly).\nThis is because Spring Data Mongo clears the password from `MongoProperties` after using it.\n\n[mongeez]: https://github.com/mongeez/mongeez\n[mongeez.xml]: https://github.com/mongeez/mongeez/wiki/How-to-use-mongeez#create-a-mongeezxml-file-that-include-all-change-logs\n[spring-boot-starter]: http://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/#using-boot-starter-poms\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhzpz%2Fmongeez-spring-boot-starter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhzpz%2Fmongeez-spring-boot-starter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhzpz%2Fmongeez-spring-boot-starter/lists"}