Maven Jetty 7&静态资源

时间:2011-02-21 07:52:10

标签: maven jetty static-resource

我想改变我们的基础设施,以利用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等价物是什么?

谢谢

1 个答案:

答案 0 :(得分:1)

  <contextHandlers>
       <contextHandler implementation="org.eclipse.jetty.server.handler.ContextHandler">
           <contextPath>/static</contextPath>
           <resourceBase>D:/LocalProjects/myproject/html/static/</resourceBase>
           <handler implementation="org.eclipse.jetty.server.handler.ResourceHandler"/>
        </contextHandler>
  </contextHandlers>