如何将 JAR 文件放入 Play 2 项目中并使用它?
在Play 1中,我们可以放置一些JAR 文件放入 /lib
目录中。但没有这样的目录,我也没有找到任何信息来做到这一点。
Play 2 使用存储库,但有时我只是想要一种快速而肮脏的方式来使用 JAR 文件。我该怎么做?
In Play 1, we can put some JAR files into the /lib
directory. But there is no such a directory, and I don't find any information to do this.
Play 2 uses repositories, but sometimes I just want a quick and dirty way to use a JAR file. How do I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于 Play 2 应用程序是使用 sbt 构建的,因此您只需遵循他们的 非托管依赖项:将您的 JAR 文件位于
lib/
目录中。Since Play 2 applications are built using sbt, you can just follow their convention for unmanaged dependencies: put your JAR file in the
lib/
directory.