1

在服务器上启动我的应用程序后,它会连接到我的 MySQL 数据库。

2015-04-19 17:00:38,636 - [INFO] - from play in main 
database [default] connected at jdbc:mysql://localhost/crowdfundme

但是每次涉及数据库时它都会崩溃。

Cannot invoke the action, eventually got an error:   javax.persistence.PersistenceException: Query threw SQLException:Table  'crowdfundme.user' doesn't exist 
Bind values:[] 
Query was:
select t0.id c0, t0.name c1, t0.age c2, t0.money c3, t0.nationality c4, t0.has_funded c5, t0.has_answered_questions c6, t0.chosen_bike c7,   t0.funding_amount c8, t0.money_before_funding c9 from user t0 

进化脚本没有应用,但是当我第一次加载页面时,它不能应用,因为没有可能这样做。

我尝试使用常规技巧自动应用进化脚本:

evolutionplugin=enabled
applyEvolutions.default=true
applyDownEvolutions.default=true

但是现在我想不通了。也许有一些我自己看不到的完全简单的东西?感谢您的每一个回答!

4

2 回答 2

0

是第一次进化吗?也许有一些向下进化?

于 2015-04-20T07:56:27.513 回答
0

所以我自己发现了。你必须让游戏产生进化方案。在您的 application.conf 中使用db.default.url="jdbc:h2:mem:play;MODE=MYSQL"以创建 MySQL 方言的演变。在我的情况下,我必须删除 1.sql 中的“序列”,以便在我的服务器上与我的 MySQL 数据库一起使用,但也许你可以找到一个替代品。

于 2015-04-27T07:44:37.663 回答