Maven Jetty 7 & Maven静态资源
我想改变我们的基础设施,以利用 Jetty 和快速应用程序开发的优势。
不久我想提供静态内容。我在 Jetty 文档中找到了这样的解释。
<Configure class="org.mortbay.jetty.handler.ContextHandler">
<Set name="contextPath">/static</Set>
<Set name="resourceBase">D:/LocalProjects/myproject/html/static/
</Set>
<Call name="addHandler">
<Arg>
<New class="org.mortbay.jetty.handler.ResourceHandler"/>
</Arg>
</Call>
</Configure>
上述配置的 Maven 等效项是什么?
谢谢
I would like to change our infrastructure to take benefits of Jetty and rapid application development.
Shortly I would like to serve static content. I found such an explanation at Jetty documentation.
<Configure class="org.mortbay.jetty.handler.ContextHandler">
<Set name="contextPath">/static</Set>
<Set name="resourceBase">D:/LocalProjects/myproject/html/static/
</Set>
<Call name="addHandler">
<Arg>
<New class="org.mortbay.jetty.handler.ResourceHandler"/>
</Arg>
</Call>
</Configure>
What is the maven equivalent of the the configuration above?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)