Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/udelblue/embedded_mongodb
spring boot with embedded mongodb
https://github.com/udelblue/embedded_mongodb
embed-mongodb mongodb nosql spring spring-boot spring-data-jpa
Last synced: 20 days ago
JSON representation
spring boot with embedded mongodb
- Host: GitHub
- URL: https://github.com/udelblue/embedded_mongodb
- Owner: udelblue
- Created: 2017-10-03T23:24:22.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-10-03T23:31:12.000Z (over 7 years ago)
- Last Synced: 2024-11-16T15:32:16.627Z (3 months ago)
- Topics: embed-mongodb, mongodb, nosql, spring, spring-boot, spring-data-jpa
- Language: Java
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Spring Boot Application example with Spring Data Rest and Embedded MongoDB
### MongoDB Embebbed Config.
* Database: store
* Collections: products
* url: localhost
* port: 12345Obs.: I used [RoboMongo](http://robomongo.org/) client to access data in MongoDB.
### Tools
[Spring Boot](http://projects.spring.io/spring-boot/)[Spring Data Rest](http://projects.spring.io/spring-data-rest/)
[MongoDB](https://www.mongodb.com/)
[embedmongo-spring](https://github.com/jirutka/embedmongo-spring)
[de.flapdoodle.embed.mongo](https://github.com/flapdoodle-oss/de.flapdoodle.embed.mongo)
### Run it!
mvn package spring-boot:run### Urls
* [http://localhost:8080/api/](http://localhost:8080/api/)```javascript
{
"_links" : {
"products" : {
"href" : "http://localhost:8080/api/products{?page,size,sort}",
"templated" : true
},
"profile" : {
"href" : "http://localhost:8080/api/alps"
}
}
}
```
* [http://localhost:8080/api/products{?page,size,sort}](http://localhost:8080/api/products{?page,size,sort})"# embedded_mongodb"