我有一个使用 xsbt-web-plugin 的项目,但我希望能够自定义码头设置。有没有办法可以指定我自己的 jetty.xml 文件?我找到了
PluginKeys.configurationFiles
设置并将其设置为所需的文件,但没有效果
我有一个使用 xsbt-web-plugin 的项目,但我希望能够自定义码头设置。有没有办法可以指定我自己的 jetty.xml 文件?我找到了
PluginKeys.configurationFiles
设置并将其设置为所需的文件,但没有效果
您可以使用以下参数指定jetty.xml配置文件:config
jetty()
jetty(config = "etc/jetty.xml")
如果需要指定多个配置文件,可以将它们作为单独的--config
参数传递:
jetty(args = Seq
"--config", "jetty.xml"
, "--config", "jetty-https.xml"
, "--config", "jetty-ssl.xml"
))
查看文档以获取更多信息。
我目前使用 xsbt-web-plugin 2.0.2(最新版本)。您可以在 build.sbt 中执行以下操作:
enablePlugins(JettyPlugin)
containerConfigFile in Compile := Some(file("./src/main/webapp/WEB-INF/jetty-env.xml"))
我希望它对你有帮助。