0

我正在使用 MySql 和 Play-1.2.5,我在 application.conf 中使用以下行将两者链接起来,

# If you need a full JDBC configuration use the following :
db.default.driver=com.mysql.jdbc.Driver
db.default.user="root"
db.default.password="pass"
db.default.url="mysql://localhost:3306/sample"

AFAIK,如果我错了,请纠正我,Play-1.2.5 不提供任何用于链接和查询数据库的文档。

现在,

  1. 如何在 play framework 中设置 Model 类来访问数据库表及其字段?
  2. 是否有查询接口(例如:MorphiaQuery for MongoDB)在 mysql 数据库上执行 CRUD 操作或使用实际的 mysql 查询是唯一的选择?

提前致谢..

4

1 回答 1

0

有很多关于这个主题的文档和教程。
MySQL 可以与 JPA 一起使用。
对于 morphia 和 MongoDB,您可能需要使用模块。

http://www.playframework.com/documentation/1.2.7/jpa
http://www.playframework.com/documentation/1.2.7/guide2
http://mangstacular.blogspot.com/2011/09/play-框架部分 2-database.html

http://www.playframework.com/modules/morphia
http://www.playframework.com/modules/morphia

于 2013-08-29T05:50:01.683 回答