Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
開発環境のプレイ フレームワークでは、スタック トレースを使用して例外を適切に表示しています。しかし、本番環境に移動すると、例外 ID のみが表示されます。prodのエラーページに少なくとも例外メッセージを表示するには?
例外をキャッチして、必要なものを表示できます。
object Global extends GlobalSettings { override def onError(request: RequestHeader, ex: Throwable) = { InternalServerError( views.html.errorPage(ex) ) } }
公式ドキュメント とデフォルトのエラーページをチェックしてください!