vote up 3 vote down star

I've got a java server (not web based, more like a big, many-threaded standalone application) that needs to talk to a MS SQL Server database.

I just worked on a different project that ported a home-grown O/R layer from oracle to SQL Server, and it ran into significant problems because of too many oracle assumptions (locking, mostly). So What O/R layer should I use?

Edit: I have heard of Hibernate, but everything else is useful! Specifically though, do any of these APIs/frameworks help with the peculiar shortcomings of SQL Servers locking strategy in a multi-threaded environment?

flag

5 Answers

vote up 6 vote down

Hibernate is the usual choice. Besides that you can take a look at Oracle TopLink, iBatis, whatever suites you best.

link|flag
Are any of them particularly suited to the stated conditions? Multi-threaded (with contention) and SQL Server? – TREE Nov 7 '08 at 20:10
vote up 1 vote down

I have also used BEA Kodo with Microsoft SQL Server (back when it was Solarmetric Kodo). At the time, it was far more feature rich than Hibernate and any JDO implementation. That's no longer the case, though it still has a number of unique performance/scalability features.

Hibernate is the most popular one available today. My personal favorite is TopLink.

The key standards you want to look for are EJB3, Java Persistance API (JPA), and Java Data Objects (JDO). JPA is probably the most important of the bunch as its easier to use and is meant as a common API for using Hibernate, JDO, Toplink, EJB3, etc.

link|flag
vote up 2 vote down

I've used Hibernate and iBATIS. Choosing one over the other depends upon the situation.

Hibernate:

  • is much pickier about database schema
  • generates most of the sql for you
  • more features
  • more complex

iBATIS:

  • works better when you want to work with existing schema
  • requires you to write your own sql
  • easier to learn

They both work well with SQL Server and handle multi threading.

link|flag
vote up 0 vote down

Hibernate is good. But there are different flavors of Hibernate implementation. I suggest Hibernate 3.x (3.2?) with JPA. I also usually use Spring 2.5 as the framework for the business logic. Hibernate and Spring work especially well together, because they can share name resolving scopes to a degree, which lesses the confusion on how to accesses O/R objects.

link|flag
vote up 0 vote down

I suggest Cayenne.It supports a lots of databases. It is open source,too. But there is no so much documents. You can use cayenne with struts.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.