2

In play 2.0 Ebean should become the default persistence layer. And after a few days of hibernate frustration I started a look on Ebean. I found the yabe example really impressive. However I had a bunch of questions:

  1. Does anybody use the play-module in a commercial project?

  2. Does the module works with play 1.2?

  3. What databases-platforms are supported? I found a special-class for Hsql.

  4. Is there any update-support for database-tables or is it always drop and create?

Would be great if any one can give some information about.

4

2 回答 2

1

关于你的问题:

  1. 我不知道有任何著名的应用程序在使用它,但就我所见,它有一个非常活跃的社区在使用它。它已经存在了 4 年(也许更久),所以我期待一些可靠性 :)
  2. 似乎有一个模块,代码here,应该是兼容的。虽然没试过
  3. 支持的数据库包括:Oracle、MySql、Postgres、H2、SQL Server、SQLite。也许mroe,但这些应该足够了
  4. EBeans 可以为数据库Schema 生成DDL。如果它没有“更新”程序,我会感到惊讶(它会极大地限制有用性!)
于 2011-09-29T07:18:48.130 回答
1
  • 有人在商业项目中使用播放模块吗?

还没有。

  • 该模块是否适用于 play 1.2?

我试过了,不行。

  • 支持哪些数据库平台?我为 Hsql 找到了一个特殊的类。

ebean 支持的所有内容。

  • 数据库表是否有任何更新支持,还是总是删除和创建?

为此使用liquibase 模块

于 2012-03-06T11:45:43.447 回答