1

Hi I have planned to migrate from Hibernate with MySQL to MongoDb

Does any one know eigther Hibernate OGM is good or Spring data or any think else

Sanne
  • 6,027
  • 19
  • 34
Murali
  • 319
  • 2
  • 5
  • 9

2 Answers2

1

Spring Data MongoDB is certainly a very powerful framework to use and one, if you're comfortable with ORM-like tools, makes a lot of sense. The MongoRepository api takes care of all the CRUD boiler plate and the findBy... methods and query helpers reduce a lot of work. Definitely worth looking at.

have a look at the docs for some nice examples and github as well.

incomplete-co.de
  • 2,137
  • 18
  • 23
1

Look at MongoJack http://mongojack.org/

I found it a lot faster and easier to use than Spring Data.

jarek
  • 11
  • 1