Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm new to Play framework. I'm trying to configure MySQL database as a datasource to be used with Play Ebeans.

Could you some one please explain the steps that are needed to configure MySQL with Play 2.0 framework (like, downloading drivers, adding dependency etc).

share|improve this question

3 Answers

up vote 28 down vote accepted

Look at this page from Play's documentation. It says:

Other than for the h2 in-memory database, useful mostly in development mode, Play 2.0 does not provide any database drivers. Consequently, to deploy in production you will have to add your database driver as an application dependency.

For example, if you use MySQL5, you need to add a dependency for the connector:

val appDependencies = Seq(
    // Add your project dependencies here,
    ...
    "mysql" % "mysql-connector-java" % "5.1.18"
    ...
)

SBT will download the driver for you. You should also check out the section on managing dependencies.

To connect to MySQL, you will also need to change some settings in your application.conf:

db.default.driver=com.mysql.jdbc.Driver
db.default.url="mysql://root:secret@localhost/myDatabase"
share|improve this answer
thanks. Once that is done, what would be the configuration changes should I make in application.conf file? (db.default.driver, db.default.url, etc) – Veera Apr 4 '12 at 8:09
Oh, right, sorry. I added them to my answer. – Carsten Apr 4 '12 at 8:26
@Carsten, giving url without quotes will fail – biesior Apr 4 '12 at 8:32
@biesior: Thanks! You're right, i fixed it. – Carsten Apr 4 '12 at 11:04
thanks, it saved my day – Daniel Flores Jun 21 '12 at 0:09

As Carsten wrote it can be fetched from documentation, however there's summary:

make sure you have dependency configured in /project/Build.scala

val appDependencies = Seq(
    // Add your project dependencies here,
    "mysql" % "mysql-connector-java" % "5.1.18"
)

Add proper config of the DB (replace default H2 config) in /conf/application.conf:

(don't remove encoding from URL):

db.default.driver=com.mysql.jdbc.Driver
db.default.url="jdbc:mysql://localhost/your_db_name?characterEncoding=UTF-8"
db.default.user=your_login
db.default.password=your_pass

in the same file find and make sure this line is NOT commented:

ebean.default="models.*"

That's all, restart your app (or run in dev mode) , then it will create DDL and will ask you for applying it.

share|improve this answer
Thanks, just saved me some time. – sleeplessnerd Jun 16 '12 at 0:00

Got stuck with my MySQL configuration until I found this.

Most important things taken from @biesior answer:

  • Add MySQL connector/J in project's dependency (which is inside /project/Build.scala)
  • After adding dependency, run play dependencies to resolve newly added MySQL connector/J dependency
  • Uncomment default ebean configuration line ebean.default="models.*"
  • Configure MySQL database correctly with proper character encoding db.default.driver=com.mysql.jdbc.Driver db.default.url="jdbc:mysql://www.sample.com:3306/test?characterEncoding=UTF-8" db.default.user=playuser db.default.pass=playuser

It saved my day.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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