在服务器上启动我的应用程序后,它会连接到我的 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
但是现在我想不通了。也许有一些我自己看不到的完全简单的东西?感谢您的每一个回答!