日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

spring boot : Invalid Keystore format Error 解决方法

發布時間:2024/9/19 38 豆豆
生活随笔 收集整理的這篇文章主要介紹了 spring boot : Invalid Keystore format Error 解决方法 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

前言

  • springboot:2.0.0.RELEASE
  • maven
  • 開啟HTTPS
  • 在eclipse中啟動項目,可以正常啟動
  • maven 打包后,啟動springboot出現錯誤:Invalid Keystore format Error

異常原因

maven package 時修改了證書可文件。使用maven-resources-plugin插件copy resources時,filtering參數為true。符合條件的文件,會被maven進行修改(替換占位符。這個功能很有用,但是證書庫不能被修改),導致錯誤。出錯時的POM文件片段如下:

<plugin><artifactId>maven-resources-plugin</artifactId><executions><execution><id>copy-resources</id><phase>package</phase><goals><goal>copy-resources</goal></goals><configuration><resources><resource><directory>src/main/resources</directory><filtering>true</filtering></resource></resources></configuration></execution></executions> </plugin>

修改為如下,錯誤解決。

<plugin><artifactId>maven-resources-plugin</artifactId><executions><execution><id>copy-resources</id><phase>package</phase><goals><goal>copy-resources</goal></goals><configuration><resources><resource><directory>src/main/resources</directory><filtering>true</filtering><excludes><exclude>localhost.jks</exclude></excludes></resource><resource><directory>src/main/resources</directory><filtering>false</filtering><includes><include>localhost.jks</include></includes></resource></resources></configuration></execution></executions> </plugin>

總結

以上是生活随笔為你收集整理的spring boot : Invalid Keystore format Error 解决方法的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。