I have been toying with Scala and I was wondering if anyone had had any experience with using hibernate and mysql as a persistent store for scala objects? Does it work out of the box or is there a lot to do?
|
Most of the time, Scala + Hibernate works quite well, with minor bumps which could be overcome easily. For exmaple, when dealing with collections, Hibernate requires the use of java.util interfaces. But you could import scala.collection.jcl.Conversions._ if you want to tap on Scala's more powerful library. You may want to check out Frank Sommers' post for more information. |
|||||
|
|
Scala Query is not Hibernate but may be interesting. |
|||
|
|
|
See example of mapping Option in hibernate: http://snippets.dzone.com/posts/show/10025 |
|||
|
|
|
There are issues. Because some features of JPA leverage nested annotations, e.g. collections, you're in trouble because Scala does not yet support nested annotations. That'll go away when 2.8 comes out. See Wille Faler’s Blog for more on this topic plus other incompatibilities. |
|||
|
|
|
Note that Scala 2.8, now in RC5 and expected to release shortly, supports nested annotations. The release has many other cool features as well. |
|||
|
|
|
I have not used Hibernate with scala directly, but I am using JPA. Hibernate provides a JPA implementation, and the way you define JPA persistent classes or Hibernate ones is not much different, so I think using Hibernate without the JPA layer is possible |
|||
|
|
|
It is definitely not a lot of work. A simple hibernate + scala example can be defined in a few tens of lines. Scala and Java can be mixed up in the same project. In particular, the hibernate-scala combination makes possible to combine the JPA framework, and a very flexible orm layer with the elegance of immutable structures and functional programming as provided by scala. The easiest way to experiment with hibernate and scala is by using an in-memory hsqldb database via hibernate/jpa. First off, let’s define the domain model. In this case, a scala class annotated according to hibernate style, about my buddies.
Note how the scala class, is much more compact than the java class, since we don’t need the typical getter/setter boilerplate code. Now let’s make sure, that the jpa modules and the database model is loaded. According to the hibernate specification, let’s add the well known hibernate configuration file: resources/META-INF/persistence.xml:
After defining the persistency configuration, let’s move on the main scala file:
The code is quite straightforward. Once the JPA EntityManager is created via the factory, the data model is available for insertion, deletion, query, using the methods defined in the documentation of hibernate and jpa. This example has been set up using sbt. After retrieving the necessary packages, and compiling the source, running the tutorial will produce the following log:
|
|||
|
|
|
Have a look at Scala version of Play Framework where there is full JPA adaptation for Scala. |
|||
|
|