diff --git a/_config.yml b/_config.yml index ddc41fb5d..6a59404b7 100644 --- a/_config.yml +++ b/_config.yml @@ -10,20 +10,20 @@ redcarpet: ### The following properties will change on a project-by-project basis # Context path in the remote website (usually /), will be prepended to absolute URLs for static resources -baseurl: /gh-pages +baseurl: /spring-data-mongodb # Name of the project for display in places like page titles -name: Spring Framework +name: Spring Data MongoDB # ID of the project in the metadata API at spring.io (if this is not a # valid project ID the javascript widgets in the home page will not work) -project: spring-framework +project: spring-data-mongodb # Project github URL -github_repo_url: http://github.com/spring-projects/spring-framework +github_repo_url: https://github.com/spring-projects/spring-data-mongodb # Project forum URL -forum: http://forum.spring.io/forum/spring-projects/container +forum: http://forum.spring.io/forum/spring-projects/data/nosql # If you want to include a custom pom.xml or gradle template set these value to true and add _include files custom_pom_template: false diff --git a/img/project-icon-large.png b/img/project-icon-large.png new file mode 100644 index 000000000..f9b4fec16 Binary files /dev/null and b/img/project-icon-large.png differ diff --git a/index.html b/index.html new file mode 100644 index 000000000..9c38794e3 --- /dev/null +++ b/index.html @@ -0,0 +1,102 @@ +--- +layout: base_layout + +# The name of your project +title: Spring Data MongoDB + +badges: + + # Specify your project's twitter handle, if any. Delete if none. + twitter: SpringData + + # Customize your project's badges. Delete any entries that do not apply. + custom: + - name: Source (GitHub) + url: https://github.com/spring-projects/spring-data-mongodb + icon: github + + - name: Issues (JIRA) + url: https://jira.springframework.org/browse/DATAMONGO + icon: tracking + + - name: CI (Bamboo) + url: https://build.springsource.org/browse/SPRINGDATAMONGODB-MONGO + icon: ci + + - name: Forum + url: http://forum.spring.io/forum/spring-projects/data/nosql + icon: forum + + - name: StackOverflow + url: http://stackoverflow.com/questions/tagged/spring+mongodb + icon: stackoverflow + + - name: Metrics (SonarQube) + url: https://build.springsource.org/browse/SPRINGDATAMONGODB-MONGOSONAR + icon: metrics + +--- + + + + +{% capture parent_link %} +[Spring Data]({{ site.projects_site_url }}/spring-data) +{% endcapture %} + + +{% capture billboard_description %} +Spring Data for [MongoDB](http://www.mongodb.org/) is part of the umbrella Spring Data project which aims to provide a familiar and consistent Spring-based programming model for for new datastores while retaining store-specific features and capabilities. +{% endcapture %} + +{% capture main_content %} + +## Introduction + +The Spring Data MongoDB project provides integration with the MongoDB document database. Key functional areas of Spring Data MongoDB are a POJO centric model for interacting with a MongoDB DBCollection and easily writing a Repository style data access layer. + +## Features + +* Spring configuration support using Java based @Configuration classes or an XML namespace for a Mongo driver instance and replica sets. +* MongoTemplate helper class that increases productivity performing common Mongo operations. Includes integrated object mapping between documents and POJOs. +* Exception translation into Spring's portable Data Access Exception hierarchy +* Feature Rich Object Mapping integrated with Spring's Conversion Service +* Annotation based mapping metadata but extensible to support other metadata formats +* Persistence and mapping lifecycle events +* Low-level mapping using MongoReader/MongoWriter abstractions +* Java based Query, Criteria, and Update DSLs +* Automatic implementation of Repository interfaces including support for custom finder methods. +* QueryDSL integration to support type-safe queries. +* Cross-store persistance - support for JPA Entities with fields transparently persisted/retrieved using MongoDB +* Log4j log appender +* GeoSpatial integration +* Map-Reduce integration +* JMX administration and monitoring +* CDI support for repositories +* GridFS support + + +## Quick Start + +{% include download_widget.md %} + +{% endcapture %} + +{% capture related_resources %} + +### Sample Projects + +* [Spring Data Book](https://github.com/springsource/spring-data-book) + +### Getting Started Guides + +* [Accessing Data with Mongo]({{site.main_site_url}}/guides/gs/accessing-data-mongo) + +### Tutorials + +* [Persisting data with Spring]({{site.main_site_url}}/guides/tutorials/data) + +{% endcapture %} + +{% include project_page.html %} + \ No newline at end of file