如何在xsbt-web-plugin上设置jetty的contextPath



我是sbt 0.11.1和xsbt-web-plugin 0.2.10

开始构建。SBT和插件。SBT

<标题> build.sbt h1> 目/plugins.sbt h1> 乎configurationXml不起作用,在sbt控制台运行container:start后,contextPath获得默认值"/"

如何更改contextPath?任何建议吗?提前感谢!

来自scalatra-user group的解决方案

添加jetty-plus到依赖项:

"org.eclipse.jetty" % "jetty-plus" % "7.4.5.v20110725" % "container"

添加到build.sbt:

env in Compile := Some(file(".") / "jetty-env.xml" asFile)

在与build相同的目录中。首先,创建jetty- envy .xml:

<Configure class="org.eclipse.jetty.webapp.WebAppContext">
  <Set name="contextPath">/foo</Set>
</Configure>

相关内容

  • 没有找到相关文章

最新更新