SIBYL System

just technical blog

[play2.4]本番モードでhibernateのmapに失敗する件

   

play_full_color

playframework2.4をサーバーに導入後、「activator run」で動作を確認した後に「activator start」で本番モード(production mode)で起動するとHibernateのmap処理でエラーが発生しました。

Caused by: java.lang.IllegalArgumentException: org.hibernate.hql.internal.ast.QuerySyntaxException: Test is not mapped [from Test]

調べてみると以下の記事、2.4.1では修正される模様?

https://groups.google.com/forum/#!msg/play-framework/Sf2bcFKfMow/4qyEiROEliAJ

 

以下をbuild.sbtに入れると良いようです。

PlayKeys.externalizeResources := false

 - Playframework, 未分類