如何在 Maven META-INF 根目录中放置 folder/jar
How to place folder/jar in Maven META-INF root
我正在为 SAP hana 云平台开发一个需要 UnlimitedJCEPolicyJDK8 的实现。文档告诉我,我需要将它放在以下结构下:
WAR 文件:
元信息
- ext_security
- jre8
问题是当我包含它去 WEB-INF/classes 的罐子时,那不是服务器正在寻找的地方。如图所示。
技术细节:
tomcat 8: v3.2 运行时
JRE 1.8
Maven 构建:使用 webapp 原型
使用外观来支持 servlet。
IDE: 日食
尝试了以下方法:
- 使用 eclipse web 部署程序集添加文件(无论出于何种原因,它似乎无法与 maven 一起工作,是的,我使用 .m2 和 WTP 插件)
- 通过 Maven 依赖项添加文件并尝试复制到输出文件夹。
- 我打开 WAR 文件手动将文件移动到正确的文件夹并重新压缩并验证如果它在正确的文件夹中则对服务器的更新工作正常。
我真的希望你能帮助我。
亲切的问候,
更新:根据 khmarbaise 的要求,pom 文件。并且自己创建了web-inf文件夹,希望能放在根目录下。
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>hcp</groupId>
<artifactId>edi.web</artifactId>
<packaging>war</packaging>
<version>0.0.2-SNAPSHOT</version>
<name>edi.web Maven Webapp</name>
<url>http://maven.apache.org</url>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<!-- tried classpath but it did not seem to do annything
Below dependency is from local .m2 repository-->
<dependency>
<groupId>hcp</groupId>
<artifactId>jre8security</artifactId>
<version>1.0.0</version>
<optional>true</optional>
<!-- goes in manifest classpath, but not included in WEB-INF/lib -->
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.6</version>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>
pace提供的解决方案:
使用以下名称创建源文件夹:src/main/webapp/META-INF
maven-war-plugin 的 war 目标有一个配置选项 webappDirectory。它默认为 src/main/webapp。那里的任何东西都将放在 war 的根目录中。所以你可以创建一个目录:
src/main/webapp/META-INF
然后放入您想要的任何文件。我不太了解网络工具插件,所以不确定哪种方法可以在那里工作。
我正在为 SAP hana 云平台开发一个需要 UnlimitedJCEPolicyJDK8 的实现。文档告诉我,我需要将它放在以下结构下:
WAR 文件: 元信息 - ext_security - jre8
问题是当我包含它去 WEB-INF/classes 的罐子时,那不是服务器正在寻找的地方。如图所示。
技术细节:
tomcat 8: v3.2 运行时 JRE 1.8 Maven 构建:使用 webapp 原型 使用外观来支持 servlet。 IDE: 日食
尝试了以下方法:
- 使用 eclipse web 部署程序集添加文件(无论出于何种原因,它似乎无法与 maven 一起工作,是的,我使用 .m2 和 WTP 插件)
- 通过 Maven 依赖项添加文件并尝试复制到输出文件夹。
- 我打开 WAR 文件手动将文件移动到正确的文件夹并重新压缩并验证如果它在正确的文件夹中则对服务器的更新工作正常。
我真的希望你能帮助我。
亲切的问候,
更新:根据 khmarbaise 的要求,pom 文件。并且自己创建了web-inf文件夹,希望能放在根目录下。
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>hcp</groupId>
<artifactId>edi.web</artifactId>
<packaging>war</packaging>
<version>0.0.2-SNAPSHOT</version>
<name>edi.web Maven Webapp</name>
<url>http://maven.apache.org</url>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<!-- tried classpath but it did not seem to do annything
Below dependency is from local .m2 repository-->
<dependency>
<groupId>hcp</groupId>
<artifactId>jre8security</artifactId>
<version>1.0.0</version>
<optional>true</optional>
<!-- goes in manifest classpath, but not included in WEB-INF/lib -->
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.6</version>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>
pace提供的解决方案:
使用以下名称创建源文件夹:src/main/webapp/META-INF
maven-war-plugin 的 war 目标有一个配置选项 webappDirectory。它默认为 src/main/webapp。那里的任何东西都将放在 war 的根目录中。所以你可以创建一个目录:
src/main/webapp/META-INF
然后放入您想要的任何文件。我不太了解网络工具插件,所以不确定哪种方法可以在那里工作。