45

いくつかのテストファイルをビルドディレクトリにダウンロードするMavenプロジェクトがあります./target/files。これらのファイルはサーブレットで使用できるようになります。これは、サーブレットのフルパスをハードコーディングすることで簡単に実現でき<init-param>ます。

<servlet>
    <servlet-name>TestServlet</servlet-name>
    <servlet-class>my.package.TestServlet</servlet-class>
    <init-param>
        <param-name>filepath</param-name>
        <param-value>/home/user/testproject/target/files</param-value>
    </init-param>
</servlet>

フルパスのハードコーディングを回避し、代わりに動的パラメーター置換を使用するにはどうすればよいですか?次のことを試しましたが、機能しませんでした。

<param-value>${project.build.directory}/files</param-value>
4

6 に答える 6

88

pomセクションに追加します。

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-war-plugin</artifactId>
    <configuration>
        <webResources>
            <resource>
                <filtering>true</filtering>
                <directory>src/main/webapp</directory>
                <includes>
                    <include>**/web.xml</include>
                </includes>
            </resource>
        </webResources>
        <warSourceDirectory>src/main/webapp</warSourceDirectory>
        <webXml>src/main/webapp/WEB-INF/web.xml</webXml>
    </configuration>
</plugin>

詳細については、Maven:web-appプロジェクトのweb.xmlをカスタマイズするを参照してください。

于 2013-03-12T08:26:32.423 に答える
8

Mavenフィルタリングリソースを使用するだけです。

<build>
    ...
    <resources>
      <resource>
        <directory>src/main/resources</directory>
        <filtering>true</filtering>
      </resource>
      ...
    </resources>
    ...
  </build>
  ...
</project>

これを組み合わせて、一部のファイルをフィルタリングしたいのに対し、他のファイルはフィルタリングしないようにすることもできます。

   <resources>
      <resource>
        <directory>src/main/resources</directory>
        <filtering>true</filtering>
        <includes>
          <include>**/*.xml</include>
        </includes>
      </resource>
      <resource>
        <directory>src/main/resources</directory>
        <filtering>false</filtering>
        <excludes>
          <exclude>**/*.xml</exclude>
        </excludes>
      </resource>
      ...
    </resources>

${home}などを置き換えたいファイルに適切なプレースホルダーを配置します。

于 2013-03-12T17:54:59.667 に答える
4

Antの置換タスクを使用してそれを行うことができます。

これは、プロパティファイルのトークンキーを置き換え、ニーズに合わせて調整する実装例です。

test.properties

SERVER_NAME=@SERVER_NAME@
PROFILE_NAME=@PROFILE_NAME@

pom.xml

 <plugin>
    <artifactId>maven-antrun-plugin</artifactId>
    <version>1.7</version>
    <executions>
      <execution>
        <phase>compile</phase>
        <configuration>
          <tasks>

            <replace dir="${basedir}/src/main/resources" >
              <include name="**/*.properties"/>
             <replacefilter     token="@SERVER_NAME@" value="My Server"/>
             <replacefilter     token="@PROFILE_NAME@" value="My Profile"/>
            </replace>             

          </tasks>
        </configuration>
        <goals>
          <goal>run</goal>
        </goals>
      </execution>
    </executions>
  </plugin> 

出来上がり! 今すぐ実行

mvn clean package
于 2013-03-12T08:45:06.880 に答える
4

maven-war-pluginのfilteringDeploymentDescriptorsオプションを使用して、デプロイメント記述子をフィルタリングできると思います-

<properties>
    <maven.war.filteringDeploymentDescriptors>true</maven.war.filteringDeploymentDescriptors>
</properties>
于 2017-10-18T22:40:54.383 に答える
2

実行時にプレースホルダーを追加して置き換えるようにmaven-war-plugin設定します<filteringDeploymentDescriptors>true</filteringDeploymentDescriptors>mvn package

<properties>
  <project.build.directory>your path</project.build.directory>
</properties>

<build>
  <plugin>
    <artifactId>maven-war-plugin</artifactId>
    <version>3.2.2</version>
    <configuration>
      <filteringDeploymentDescriptors>true</filteringDeploymentDescriptors>
    </configuration>
  </plugin>
</build>
于 2019-03-05T09:28:13.693 に答える
1

web.xmlでのmavenパラメーターのコーディングは直接機能できません。これは、実行時に、アプリケーションの開始時にmavenが作業を終了し、アプリケーションがmavenに関する知識を持たないためです。

代替のweb.xmlをフィルタリングして(mavenフィルタリングを参照:http://maven-resources-plugin/examples/filter.html)、戦争を構築するときに使用できます(webXmlパラメーターを参照してください。戦争プラグインのドキュメント:http://maven.apache.org/plugins/maven-war-plugin/war-mojo.html

于 2013-03-12T08:23:31.037 に答える