Alibaba Cloud OSSの依存関係がインポートできない問題

バージョンの背景: springboot:2.4.12、spring-cloud:2020.0.1

Alibaba Cloud Object Storage OSS サービスを使用する場合は、公式リファレンス ドキュメントに従ってください: aliyun-spring-boot/aliyun-spring-boot-samples/aliyun-oss-spring-boot-sample at master · alibaba/aliyun-spring-boot · GitHub

依存関係をダウンロードできない問題がある Maven の設定に問題はない コンパイル時に以下の問題が報告されます。

 バージョンを追加した後、コンパイル エラーは発生しませんが、実行時に次のようにエラーが報告されます。

解決策: 依存関係を置き換える

<dependency>
            <groupId>com.alibaba.cloud</groupId>
            <artifactId>spring-cloud-starter-alicloud-oss</artifactId>
            <version>2.2.0.RELEASE</version>
        </dependency>

 Javaコード

 @Autowired
    private OSSClient ossClient;

    @Test
    void testUpload2() throws ClientException {
        // 填写Bucket名称,例如examplebucket。
        String bucketName = "xw-bucket-test";
        // 填写Object完整路径,完整路径中不能包含Bucket名称,例如exampledir/exampleobject.txt。
        String objectName = "xw/小王Test.txt";
        // 填写本地文件的完整路径,例如D:\\localpath\\examplefile.txt。
        // 如果未指定本地路径,则默认从示例程序所属项目对应本地路径中上传文件流。
        String filePath = "D:\\小王Test.txt";

        try {
            InputStream inputStream = new FileInputStream(filePath);
            // 创建PutObject请求。
            ossClient.putObject(bucketName, objectName, inputStream);
        } catch (OSSException oe) {
            System.out.println("Caught an OSSException, which means your request made it to OSS, "
                    + "but was rejected with an error response for some reason.");
            System.out.println("Error Message:" + oe.getErrorMessage());
            System.out.println("Error Code:" + oe.getErrorCode());
            System.out.println("Request ID:" + oe.getRequestId());
            System.out.println("Host ID:" + oe.getHostId());
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } finally {
            if (ossClient != null) {
                ossClient.shutdown();
            }
        }
        System.out.println("upload seccess!");
    }

 アプリケーション.yml

apring:
    cloud:
        alicloud:
          oss:
            endpoint: oss-cn-shanghai.aliyuncs.com
          access-key: LTAI5tMk2tq7yqzNPxTwRLks
          secret-key: ByS15Y7Xm2kaBBKYrIkrpYDT1sbsCM

試験結果

 

おすすめ

転載: blog.csdn.net/f746262041/article/details/128171723