gpt4 book ai didi

java - 使用嵌入式 jetty 创建网络界面

转载 作者:太空狗 更新时间:2023-10-29 16:37:25 26 4
gpt4 key购买 nike

我是网络开发和使用嵌入式 jetty 的新手。下面显示的源代码是使用 eclipse IDE 开发的。我必须以编程方式启动 jetty 服务器,我没有通过命令行启动它的选项。它需要是一个非常轻量级的网络界面,因为它将从内存/处理速度低的系统中启动。

我在ECLIPSE中开发了如下目录结构

  JettyExample <Project>
src
sample_package
HelloWorld.java
WEB-INF
index.html
web.xml

HelloWorld.java源码

 public static void main(String[] args) throws Exception
{

Server server = new Server(8080);
ResourceHandler resource_handler = new ResourceHandler();
resource_handler.setDirectoriesListed(true);
resource_handler.setResourceBase(args.length == 2?args[1]:".");
resource_handler.setWelcomeFiles(new String[]{ "WEB-INF/index.html" });


System.out.println("serving " + resource_handler.getBaseResource());

HandlerList handlers = new HandlerList();
handlers.setHandlers(new Handler[] { resource_handler, new DefaultHandler() });
server.setHandler(handlers);
server.start();
server.join();

}

index.html 是

 <html>
<head>
<title>HTML Generator Sample Page</title>
</head>
<body>
<h1 style="text-align: center;">
Agent Management Interface</h1>
<ol>
<li>
Start Platform</li>
<li>
Show Agent Status</li>
<li>
Create Dummy Agent</li>
<li>
Intiate Request Message</li>
<li>
Stop agent</li>
<li>
Stop Platform</li>
</ol>
<p>
Enter option :</p>
<p>
<textarea cols="10" name="myTextBox" rows="1" style="width: 104px; height: 25px;"></textarea></p>
<p>
<input name="option_selector" type="submit" value="option_selector" /></p>
</body>

web.xml 文件是带有欢迎文件列表的常用文件。当我运行服务器并启动时localhost:8080 在 Web 浏览器中,我收到 404 错误 我不确定我需要添加到 web.xml 文件中的是什么,或者 web.xml 文件的引用在 HelloWorld.java main 中不正确方法。

任何提示/建议都会有所帮助编辑 1:

我在类路径中包含了 server-api.jar 文件和 jetty.jar 文件,并且没有使用 Maven 插件用于 eclipse。

编辑2:

2012-05-25 14:40:39.253:DBUG:oejs.AsyncHttpConnection:async request (null null)@17160330 org.eclipse.jetty.server.Request@105d88a
2012-05-25 14:40:39.260:DBUG:oejs.Server:REQUEST / on org.eclipse.jetty.server.nio.SelectChannelConnector$SelectChannelHttpConnection@1db05b2@127.0.0.1:8080<->127.0.0.1:55062
2012-05-25 14:40:39.264:DBUG:oejs.Server:RESPONSE / 200
2012-05-25 14:40:39.267:DBUG:oejs.AsyncHttpConnection:async request (null null)@17160330 org.eclipse.jetty.server.Request@105d88a
2012-05-25 14:40:39.272:DBUG:oejs.AsyncHttpConnection:async request (null null)@17160330 org.eclipse.jetty.server.Request@105d88a
2012-05-25 14:40:39.273:DBUG:oejs.Server:REQUEST /jetty-dir.css on org.eclipse.jetty.server.nio.SelectChannelConnector$SelectChannelHttpConnection@1db05b2@127.0.0.1:8080<->127.0.0.1:55062
2012-05-25 14:40:39.275:DBUG:oejs.Server:RESPONSE /jetty-dir.css 404

最佳答案

您已将欢迎文件设置为 WEB-INF/index.html。位于 WEB-INF 文件夹内的项目仅对 servlet 容器可见,在容器外无法访问。

这是行不通的,因为 index.html 隐藏在 WEB-INF 后面。此外,在使用 WEB-INF 时,习惯上从应用程序的根目录访问它,例如/WEB-INF/file.html:

resource_handler.setWelcomeFiles(new String[]{ "WEB-INF/index.html" });

如果您只包含 index.html 文件作为欢迎文件,并确保 index.html 在您的应用程序的根目录中,Jetty 服务器应该能够找到它:

resource_handler.setWelcomeFiles(new String[]{ "index.html" });

确保在进行此更改后重新启动 Jetty,因为应用程序将需要重新加载此信息。

此外,在服务器上配置新的 Web 应用程序时,将日志记录级别一直调高通常是个好主意。服务器和框架通常记录在较低级别,因此它们不会干扰应用程序日志;但是,在这种情况下,您需要在浏览器中加载 localhost:8080 时查看 servlet 容器尝试访问的资源。

为了进一步澄清,ResourceHandler.setWelcomeFiles Java 方法与在非嵌入式 Jetty 中通过 web.xml 配置服务器相同,使用以下 XML 条目:

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

Eclipse Wiki Page on Embedding Jetty 中有一些示例和更多文档,请务必查看它们以获得更多指导。

嵌入式Jetty 6的文件结构:

这是我拥有的嵌入式 Jetty 副本的示例文件结构。请注意,index.html 位于根目录中,就在 src 旁边:

build.properties*  index.html*  README.textile*  src/   war/
build.xml* licenses/ server/ test/ WEB-INF/

关于java - 使用嵌入式 jetty 创建网络界面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10749385/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com