我将 Bootstrap 添加到我的 Play 2.1 应用程序中。添加以下路由后,在开发中运行良好:
GET /img/glyphicons-halflings.png controllers.Assets.at(path="/public", file="/images/bootstrap/glyphicons-halflings.png")
GET /img/glyphicons-halflings-white.png controllers.Assets.at(path="/public", file="/images/bootstrap/glyphicons-halflings-white.png")
这在开发模式下工作正常,但是当我在游戏控制台中使用“dist”打包应用程序时,字形图标不可用。可能是什么原因造成的?
我还在应用程序的快照 jar 上运行了一个 jar xf,并且可以验证图像是否存在并且与我在play run
本地运行时的布局相同。