私のplay20アプリケーションから、すべての外部.css / .js/etcを含むHTMLファイルを生成する必要があります。
HTMLファイルを生成するには、views.html.MyView(Parameter).toString()を使用します
しかし、私は交換する必要があります:
<link rel="stylesheet" href="@routes.Assets.at("stylesheets/bootstrap.css")">
と
<script type="text/javascript" charset="utf-8">
@icludeTextFrom(routes.Assets.at("stylesheets/bootstrap.css"))
This function should read the bootstrap.css file and embed it's content here.
</script>
Play 2.0には、他のファイルを埋め込むための機能がありますか、それともファイルの内容を手動でコピーする必要がありますか?
ありがとうFabian