嵌入式 jetty ServletTester 提供单个静态文件
我正在使用 jetty 进行单元测试,我不仅想提供测试中的 servlet,还想提供静态页面。我的应用程序需要静态页面。我正在像这样初始化码头
tester = new ServletTester();
tester.setContextPath("/context");
tester.addServlet(MyServlet.class, "/servlet/*");
tester.start();
我现在需要的是类似
tester.addStaticPage("local/path/in/my/workspace", "/as/remote/file");
码头可以吗?
I'm unit testing with jetty and I want to serve not only my servlet under test but a static page as well. The static page is needed by my application. I'm initializing jetty like this
tester = new ServletTester();
tester.setContextPath("/context");
tester.addServlet(MyServlet.class, "/servlet/*");
tester.start();
What I need now, is something like
tester.addStaticPage("local/path/in/my/workspace", "/as/remote/file");
Is this possible with jetty?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为你不能用 ServletTester 来做到这一点。 ServletTester 为 servlet 创建单个上下文。您需要设置至少具有两个上下文的嵌入式 jetty:一个用于 servlet,另一个用于静态内容。
如果有一个完整的 WebAppContext,那么您就已经设置好了,但没有。
您可以复制 ServletTester 并添加头发,或者您可以直接阅读 API 并配置必要的上下文。这是一个代码片段,向您展示基本思想,您将
无法按原样编译此文件。您需要为静态内容创建合适的上下文。
I don't think you can do this with ServletTester. ServletTester creates a single Context for the servlet. You need to set up embedded jetty with at least two contexts: one for the servlet, and one for the static content.
If there was a full WebAppContext, you'd be set, but there isn't.
You could make a copy of ServletTester and add hair, or you can just read up on the API and configure the necessary contexts. Here's a code fragment to show you the basic idea, you will
not be able to compile this as-is. You will need to create a suitable context for the static content.
将资源库设置为包含静态内容的目录,并添加 jetty“默认 servlet”来提供该内容。我已将适当的代码添加到下面的示例中。
Set the resource base to the directory containing your static content, and add the jetty "default servlet" to serve that content. I have added the appropriate code to your example below.