문제

우리는 오래된 Oracle SQL 응용 프로그램을 No-SQL로 변환하려고하고 있으며 Mongo DB를 선택했습니다.

우리의 코딩을 줄이는 최대 절전 모드와 같은 몽고 DB에 대한 ORM 지원이 있습니까?

JPA 사양을 사용하여 Mongo DB 응용 프로그램을 구축 할 수 있습니까?

jpa, 어떤 orm 공급 업체가 선택하는 것이 가장 좋습니다 왜?

는 비 관계형 DB를 사용하여 응용 프로그램을 구축 할 수 있도록 Mongo DB에 대한 No-SQL 방언을 사용하지 않았습니까?

다른 팁

Hibernate 4.0은 MongoDB를 지원하는 OGM을 가지고 있습니다. 여기에서 MongoDB와 Hibernate의 예를 볼 수 있습니다 OGM에 대한 예약 예약 예약

You can choose Morphia. It is the most stable one over other ORM tools for Mongodb.

Some of the other tools are :

You can find the full list in the MongoDB Third Party Frameworks and Libs part.

Try Kundera. Much better performance than Morphia and offers a lot of easy way to code/implement.

-Vivek

You should also have a look at EclipseLink's MongoDB support which was released in version 2.4.

You may have a look at Spring Data and check out this Tutorial

PlayORM also supports MongoDB now. PlayORM is an object NoSQL mapping solution so you can write POJO’s and let it deal with all the details of marshalling/unmarshalling to MongoDB. Visit its documentation here

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top