我有一个目录 C:\documents\,我希望它的文件和子目录可以通过访问来访问http://localhost/something/
?使用Tomcat,我知道我可以使用
<Context docBase="/documents" path="/somthing" />
如何使用 Maven Jetty 插件来做到这一点?我正在使用插件版本,如下所述:
<plugins>
<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<configuration>
<scanIntervalSeconds>1</scanIntervalSeconds>
<webDefaultXml>src/test/resources/webdefault.xml</webDefaultXml>
<stopPort>9966</stopPort>
<stopKey>foo</stopKey>
</configuration>
<version>7.0.0pre1</version>
</plugin>
</plugins>
谢谢你的帮助。