如何用sbt构建一个简单的war文件?
我正在尝试使用 Scala 和 Apache Wicket 制作一个 Web 应用程序,但不确定如何构建我的项目并使用 SBT 构建一个 war 文件。我应该使用什么目录结构以及如何让 SBT 构建 war 文件?
我是 SBT 新手,但我猜测我需要一个 SBT 插件,但我不确定该使用哪个。
I'm trying to make a webapp using Scala and Apache Wicket and am not sure how to structure my project and use SBT to build a war file. What directory structure should I use and how can I have SBT build the war file?
I'm new to SBT but my guess is there is an SBT plugin I need for this, but I'm not sure which to use.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看网络插件。您可能需要 xsbt-web-plugin。
Checkout the web plugins. You'll probably want xsbt-web-plugin.
这是我写的一篇博客文章,详细介绍了 SBT 0.10.x 中有关 Web 项目的更改:
http://janxspirit.blogspot.com/2011/06 /scalatra-mongodb-template-project-using.html
大多数内容是相同的,并且帖子中引用的模板项目已更新为 0.11.x 应该可以帮助您开始使用一个使用 SBT 的简单 Web 项目。 giter8 是启动模板项目的绝佳工具。
Here's a blog post I did detailing the changes in SBT 0.10.x in regards to web projects:
http://janxspirit.blogspot.com/2011/06/scalatra-mongodb-template-project-using.html
Most stuff is the same and the template project referenced in the post has been updated to 0.11.x Should help get you started with a simple web project with SBT. giter8 is a great tool for starting template projects.