gpt4 book ai didi

java - 使用 Maven 在 Tomcat 中动态运行 WAR,如何添加类路径条目以便只有 Tomcat 可以看到它们?

转载 作者:行者123 更新时间:2023-11-30 06:38:45 24 4
gpt4 key购买 nike

场景是这样的:我有一个 webapp,我想使用 tomcat-maven-plugin 的 tomcat:run goal 动态运行它。 .问题是我有许多类路径资源需要区分打包的工件和在本地工作站运行的工件。

失败的尝试:

1.) 我的第一次尝试是使用 builder-helper-maven-plugin,但它不会起作用,因为目标配置文件将(不一致地!)按照自己的方式进入打包的 WAR 存档。

<plugin>    
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.3</version>
<executions>

<execution>
<id>add-resource</id>
<phase>generate-resources</phase>
<goals>
<goal>add-resource</goal>
</goals>
<configuration>
<resources>
<resource>
<directory>${basedir}/src/main/resources-env/${testEnv}</directory>
<targetPath>${basedir}/target/classes</targetPath>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>

2.) 我的第二次尝试是将文件夹(因为要部署的文件也不存在于 Tomcat 的类路径中)添加到 -Djava.ext.dirs,但它没有效果(我实际上怀疑此 systemProperties 元素配置错误或根本不工作)。见:

<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>tomcat-maven-plugin</artifactId>
<version>1.0-beta-1</version>
<configuration>
<tomcatWebXml>${basedir}/src/main/mock/web.xml</tomcatWebXml>

<systemProperties>
<property>
<name>java.ext.dirs</name>
<value>${basedir}/src/main/resources-env/${testEnv}</value>
</property>
</systemProperties>
<path>/licensing</path>
</configuration>
</plugin>

我不确定接下来要尝试什么。问题的核心似乎是这个插件中缺少类似于 Surefire 的 <additionalClasspathElement> 的东西。元素。

下一步是创建自定义 catalina.properties 并将其添加到 <configurationDir> 中吗? ?如果是这样,catalina.properties 应该是什么样子?

编辑:更详尽的解释如下

我理解这个问题读起来有些含糊,所以我会尝试详细说明一下。

我的 POM 使用 WAR 插件的 webResources 功能来复制一些特定于环境的配置文件,而不使用配置文件来执行此操作,方法是复制名为 /src/main/resources-env/${env} 的资源像这样:

...
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
...
<configuration>
...
<webResources>
<!-- Copy Environment-specific resources to classes -->
<resource>
<directory>${basedir}/src/main/resources-env/${env}</directory>
<targetPath>WEB-INF/classes</targetPath>
</resource>
</webResources>
</configuration>
</plugin>

这会将(默认,DEV)环境资源复制到包中,目前工作正常。另请注意,b/c 这些作为包装的一部分出现,tomcat:run他们永远不会知道目标(这是期望的,因为环境不同)。

所以问题是这样的:当动态 tomcat:run执行时,应用程序将失败,因为它的类路径(它查看 target/classes)将缺少所需的本地工作站环境配置文件。我需要做的就是让它们在 tomcat 的路径上,但我希望这样做而不向命令行添加任何内容,并且绝对如果有人跟进 mvn package 也不会破坏构建的完整性。而不是 clean首先。

我希望这更清楚。

最佳答案

我可能遗漏了一些东西,但为什么不在配置文件中声明所需的依赖项并在运行 Tomcat 时使用此配置文件?我不明白为什么您需要将这些资源放在 Tomcat 的类路径级别。

更新:我正在编辑我的答案以涵盖 OP 本身回答我上述问题的评论。

You're correct, the files really need to be in the webapp classpath, not tomcat's. So how could I make a profile that activate automatically for tomcat:run but without additional cmd line args?

如果不将配置文件声明为 <activeByDefault>,我不知道该怎么做或将其列在 <activeProfiles> 下(但这不是我想要的,我宁愿使用属性激活并调用类似 mvn tomcat:run -Denv=test 的东西,不确定为什么这是一个问题)。

And how should I "declare the dependencies" in the profile while ensuring that subsequent invocations never let them into the package WAR via a vanilla mvn package

如果前面提到的配置文件在默认情况下处于 Activity 状态,那么如果您不需要它,则需要通过调用类似 mvn package -P !profile-1 的方式将其排除。 .无法为某个特定目标神奇地停用配置文件(至少,据我所知)。

实际上,我的理解是,您在这里确实有两种不同的上下文:“测试”上下文(您希望在 WAR 中包含更多内容)和“正常”上下文(您不希望这些内容包含在 WAR 中)被包括在内)。老实说,我不知道如何在不指定任何附加参数的情况下区分这两种情况(根据上下文激活配置文件或停用配置文件)。您必须有正当理由,但正如我所说,我真的不明白为什么这是个问题。因此,配置文件可能不是适合您情况的解决方案。但我真的很想知道为什么,因为这似乎是配置文件的典型用例:)

更新 2: 阅读了您对其他答案的评论和您的更新后,我意识到我最初的理解是错误的(我以为您是在谈论 Maven 意义上的依赖关系)。但是,我仍然认为配置文件可以帮助您,例如自定义 <resources>就像这个 blog post (这只是一种方法,在路径中使用类似 src/main/resources/${env} 的属性是另一种方法)。但这不会解决所有您的顾虑(比如不指定额外的命令行参数或自动清理目标目录)。我对此没有任何解决方案。

关于java - 使用 Maven 在 Tomcat 中动态运行 WAR,如何添加类路径条目以便只有 Tomcat 可以看到它们?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1923302/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com