Ebean 和 playframework

发布于 2024-12-07 06:56:02 字数 372 浏览 1 评论 0原文

在2.0中Ebean应该成为默认的持久层。和 经过几天的 hibernate 挫折后,我开始关注 Ebean。我 发现 yabe 的例子确实令人印象深刻。然而我有一堆 问题:

  1. 有人在商业项目中使用play-module吗?

  2. 该模块是否适用于 play 1.2?

  3. 支持哪些数据库平台?我找到了一个特殊的班级 Hsql。

  4. 数据库表是否有更新支持,或者总是有 删除并创建?

如果有人可以提供一些相关信息,那就太好了。

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.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

梦忆晨望 2024-12-14 06:56:02

关于你的问题:

  1. 我不知道有任何著名的应用程序使用它,但据我所知,它有一个非常活跃的社区使用它。它已经存在了 4 年(也许更久),所以我期望有一定的可靠性:)
  2. 似乎有一个 模块< /a>,代码此处,应该兼容。从未尝试过,但
  3. 支持的数据库包括:Oracle、MySql、Postgres、H2、SQL Server、SQLite。也许mroe,但是这些应该足够了
  4. EBeans可以为数据库Schema生成DDL。如果它没有“更新”程序,我会感到惊讶(这会大大限制实用性!)

On your questions:

  1. I'm not aware of any famous application using it, but for what I saw it has a very active community that uses it. It's been around for 4 years (maybe more), so I expect some reliability :)
  2. There seems to be a module, code here, that should be compatible. Never tried it though
  3. Supported DB include: Oracle, MySql, Postgres, H2, SQL Server, SQLite. Maybe mroe, but these should be enough
  4. EBeans can generate DDL for the database Schema. And it would surprise me if it doesn't have a "update" procedure (it would limit the usefulness a lot!)
携君以终年 2024-12-14 06:56:02
  • 有人在商业项目中使用 play-module 吗?

还没有。

  • 该模块适用于 play 1.2 吗?

我试过了,不行。

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

ebean 支持的所有内容。

  • 是否有对数据库表的更新支持,或者它总是删除并创建?

为此,请使用 liquibase 模块

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

Not yet.

  • Does the module works with play 1.2?

I've tried, it does not.

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

All that ebean supports.

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

Use the liquibase module for this.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文