我在这里找到了两个类似的帖子,但一个没有得到回答,另一个是关于 android 的。我有一个 Spring Boot 项目,我想在我的应用程序中访问 GCP 存储文件。
在本地一切正常,我可以访问我的存储桶并在我的存储中读取和存储文件。但是当我将它上传到 gcp kubernetes 时,我得到以下异常:
“java.nio.file.FileSystemNotFoundException:提供程序“gs”未安装在 java.nio.file.Paths.get(Paths.java:147) ~[na:1.8.0_212] 在 xx.xx.StorageService.saveFile(StorageService .java:64) ~[classes!/:0.3.20-SNAPSHOT]
我出现的代码行如下:
public void saveFile(MultipartFile multipartFile, String path) {
String completePath = filesBasePath + path;
Path filePath = Paths.get(URI.create(completePath)); // <- exception appears here
Files.createDirectories(filePath);
multipartFile.transferTo(filePath);
}
}
completePath 可能导致类似“gs://my-storage/path/to/file/image.jpg”
我有以下依赖项:
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-gcp-starter-storage</artifactId>
<version>1.2.6.RELEASE</version>
</dependency>
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-nio</artifactId>
<version>0.122.5</version>
</dependency>
有谁知道在哪里看?除了基础设施之外,唯一真正的区别是我没有明确不在 kubernetes 上使用身份验证,因为根据文档,它不是必需的
在 Google Cloud Platform 环境(例如 Compute Engine、Kubernetes Engine 或 App Engine)中使用 Google Cloud 库时,无需额外的身份验证步骤。