Maven:资源二进制文件在构建后更改文件大小

2022-09-02 03:08:42

我正在使用appengine-maven-plugin来构建我的Java Google App Engine项目。

我在 WEB-INF 子文件夹中包含 .p12 证书

当我构建应用程序时,证书的文件大小增加了几 KB。这将使其无效。我也看到.jks证书也发生了同样的事情。

我已经验证了证书预构建的有效性,并使用相同的方法来确认后期构建证书的无效。

谁能告诉我为什么文件大小在变化,为什么它不是简单地复制到WAR?

感谢您的帮助。


答案 1

另一种解决方案是通过添加以下配置来禁用对整个项目中的 .p12 文件的筛选:

<build>
  ...
  <plugins>
    <plugin>
      <groupId>org.apache.maven.plugins</groupId>
      <artifactId>maven-resources-plugin</artifactId>                
      <configuration>
        <nonFilteredFileExtensions>
          <nonFilteredFileExtension>p12</nonFilteredFileExtension>
        </nonFilteredFileExtensions>
      </configuration>
    </plugin>
  </plugins>
</build>

答案 2

似乎maven正在对我的证书文件应用过滤

http://maven.apache.org/plugins/maven-resources-plugin/examples/filter.html

解决方案是禁用它

<resource>
    <directory>${basedir}/src/main/webapp/certs</directory>
    <filtering>false</filtering>
    <targetPath>WEB-INF/classes</targetPath>
</resource>

这允许正确读取证书并解决JavaPNS中的以下异常

Validating keystore reference: VALID  (keystore was found)
Verifying keystore content: javapns.communication.exceptions.KeystoreException:
Keystore exception: DerInputStream.getLength(): lengthTag=111, too big. at javapns.communication.KeystoreManager.wrapKeystoreException(KeystoreManager.java:178)

推荐