嵌入式 Jetty 在其 Jar 文件中查找文件
我成功地将 Jetty 嵌入到测试应用程序中。它可以毫无问题地提供文件。 现在我想知道 Jetty 是否可以提供其自己的 Jar 文件内的文件。
有谁知道这是否可能?
I successfully embedded Jetty on a test application. It can serve files without issues.
Now I want to know if it's possible for Jetty to serve files that are inside its own Jar file.
Does anyone know if that's possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
Jetty 嵌入页面上列出了一个示例,网址为 http://docs.codehaus.org/display /JETTY/Embedding+Jetty
技巧是创建一个指向类路径位置的文件 URL。
An example is listed on the Jetty embedding page at http://docs.codehaus.org/display/JETTY/Embedding+Jetty
The trick is to create a File URL to your classpath location.
如果将 Spring 纳入其中,这非常简单。事情就是这样:
这将使 jetty 在 jar 文件中找到必要的 Web 资源。
It's pretty simple, if you throw Spring into the equation. And here it goes:
That will make jetty find the necessary web resources inside the jar file.
也许更多的是 hack,但 JAR 文件实际上不是 ZIP 吗? (不确定)您能否将它们解压缩到临时文件夹中并从那里提供它们?
Maybe more of a hack, but aren't JAR files actually ZIPs? (not sure) Could you unzip them into a temporary folder and serve them from there?
找到答案了,不是 Jetty,而是 Winstone。 http://winstone.sf.net
Found the answer and it's not Jetty, it's Winstone. http://winstone.sf.net