3

I'm using the eclipse jetty plugin in my project:

<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>9.0.3.v20130506</version>

I have my application that read a file in the classpath of the server, but I can't manage to put it in the Jetty classpath...

I would to put it in a folder in my project and make that folder part of the Jetty classpath, how can I do it?
Is there a better solution to make that file external to the application?

4

1 回答 1

4

这只是 maven 插件的配置问题

<配置>
    <scanIntervalSeconds>10</scanIntervalSeconds>
    <jettyXml>jetty/jetty.xml</jettyXml>
    <网络应用>
        <extraClasspath>${basedir}/jetty/classpath</extraClasspath>
    </webApp>
</配置>

要将类路径文件夹添加到 Jetty,它需要webApp标签中的extraClasspath文件夹。

于 2013-08-02T09:40:38.903 回答