How do I disable H2 in the Play Framework
We are using Play with Objectify/GAE and do not need any RDBMS. How do I disable the db servi开发者_Go百科ce (H2)?
in application.conf
,just remove or comment out the line
db=mem
This is the line that specifies that H2 should be used, so by removing it, it will solve your problem.
精彩评论