1. 程式人生 > >阿裏雲圖片或文件上傳 啟動時報Error creating bean with name 'ossClient'問題

阿裏雲圖片或文件上傳 啟動時報Error creating bean with name 'ossClient'問題

maven post eat info 創建 pos mage 問題 body

異常的主要信息是說無法創建ossClient對象

技術分享圖片

下面debug顯示出具體的原因是因為找不到org.apache.http.ssl.TrustStrategy

技術分享圖片

org.apache.http.ssl.TrustStrategy其實是httpClient jar包中的,原因是因為httpClient 的版本過低,jar包中沒有org.apache.http.ssl.TrustStrategy,

所以只需要從maven倉庫中下載最新的httpClient jar包即可。本人之前用的是

技術分享圖片

後來把版本號修改為4.5.5就可以正常使用了。其實引入oos jar包已經自帶httpclient jar,不需要再單獨引入了,如果單獨引入httpclient ,那就需要註意版本號的問題了。

阿裏雲圖片或文件上傳 啟動時報Error creating bean with name 'ossClient'問題