English 中文(简体)
与NSQL数据库合作的摘要框架
原标题:Abstraction frameworks to work with NoSQL databases
  • 时间:2011-10-24 02:59:33
  •  标签:
  • java
  • nosql

那里有诸如MyBatis(原称IBatis)和Hibernate等民众框架,与关系数据库合作。

Can I get some advice from the community on whether are there such frameworks available for NoSQL databases? i.e. MongoDB and CouchDB?

I saw some mentions of JavATE from Theserverside.com, is this something similar?

许多感谢。

最佳回答
问题回答

你们试图通过抽象方式实现什么? 通常,抽象地掩盖了具体执行......就《联邦法典》而言,这意味着隐藏着你正在使用Mongo vs Couch(例如)。 但是,NSQL是一个通用术语,指的是数据储存的4个不同的执行类别。 其中一个是图表(Neo4j),文件(Mongo, Couch),名称价值,或大颜色(如Casses)。

虽然在其中一类行业中,如“猎物”这样的抽象概念会具有意义,但从这些行业称之为“NoSQL”的角度来看,这种抽象概念并不具有意义。

现在......抽象的DOES在你的申请书中具有意义。 在java世界上,春天可以帮助你。 a. 对照仅供投入-产出POJOs的java接口,用一个春季模块(如春季-mongo、泉-neo4j)执行你的数据存取层。 这样,SOLID就行了。

http://hibernate.org/ogm/rel=“nofollow noreferer”>Hibernate OGM 允许使用Hibernate AP驱动NSQL technoloqies。





相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签