Jetty、Maven 插件 - 如何配置默认文档?

发布于 2024-10-31 18:23:19 字数 460 浏览 1 评论 0原文

我们使用 Jetty 6.x 和 Maven-2。

有人知道如何配置默认文档吗?

我的意思是 - 在访问应用程序根目录(浏览到 /)时,有一个默认服务 /index.html 或任何等效项。

并且应该有一个设置来控制它。 (例如,在 tomcat 和 IIS 中都有...)

那么 1 - 我如何将其告诉 Jetty?

我知道 Jetty 的人很自豪让几乎所有内容都可以配置 - 必须是一种方法,这只是一个糟糕的文档问题,这就是我的直觉告诉我的。

2 - 我如何使用 Maven 插件做到这一点?

这实际上是一个“额外”问题,如果你只告诉我如何使用 Jetty 做到这一点 - 我希望最终能找到如何做到这一点也有 Maven。但如果有人知道 - 这将是一个很大的帮助:)

We're using Jetty 6.x, and Maven-2.

Anybody knows how to configure the default document?

I mean - there's a default that serves /index.html or any of it's equivalents when accessing the application root (browse to /).

And there should be a settings to control that.
(there is in tomcat and in IIS for example...)

So 1 - how do I tell it to Jetty?

I know the Jetty guys are proud in letting almost everything to be configured - there has to be a way to do that, it's just a problem of a poor documentation, that's what my instinct tells me.

And 2 - how do I do that using Maven plugin ?

This is actually a "bonus" question, if you only tell me how to do it with Jetty - I hope'll find eventually how to do it with Maven too. But in case anybody knows - it will be a great help :)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

月下客 2024-11-07 18:23:19

好的,我找到了。
它与 Jetty 或 Maven 无关,尽管我确信 Jetty 可以提供它自己的覆盖程序配置或默认值或其他内容。

很难找到,因为他们不称其为默认文档,而是欢迎文件
它是 JSP Servlet 定义的一部分,并且正在使用以下文件: /META-INF/web.xml

以下是需要包含在其中的内容

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">


<welcome-file-list>
    <welcome-file>customDefaultDocument.html</welcome-file> 
</welcome-file-list>


</web-app>

Ok, I found it.
It has nothing to do with Jetty or Maven, although I'm sure that Jetty can provide it's own overrider configuration or defaults or something.

It was hard to find because they don't call it default document, but welcome-files.
It's a part of the JSP Servlet deffinitions, and is working with the file: /META-INF/web.xml

And here's what needs to be inside

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">


<welcome-file-list>
    <welcome-file>customDefaultDocument.html</welcome-file> 
</welcome-file-list>


</web-app>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文