未安装提供程序"gs"



我在这里发现了两个类似的帖子,但是一个没有回答,另一个是关于android的。我有一个春季启动项目,我想在我的应用程序中访问GCP存储文件。

本地一切工作正常,我可以访问我的桶和读取以及存储文件在我的存储。但是当我把它上传到gcp kubernetes时,我得到了以下异常:

"java.nio.file。FileSystemNotFoundException: Provider "gs"不安装在java.nio.file.Paths.get(Paths.java:147) ~[na:1.8.0_212]在xx.xx.StorageService.saveFile (StorageService.java: 64)~(类!/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上不使用身份验证,因为根据文档

,它不是必需的。

当从谷歌云平台使用谷歌云库时环境,如Compute Engine、Kubernetes Engine或App Engine;不需要额外的身份验证步骤。

看起来这里的传统Spring引导打包并没有以所需的方式打包依赖项。通常你会看到这样的内容:

<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>2.4.5</version>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>

然而,对于"gs"提供程序是可访问的,它需要在'lib/'文件夹。您可以通过复制依赖项来手动打包它,然后创建JAR(这是基于springboot-helloworld示例:

)。
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>copy-dependencies</id>
<phase>prepare-package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>
${project.build.directory}/lib
</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<classpathPrefix>lib/</classpathPrefix>
<mainClass>
com.example.appengine.springboot.SpringbootApplication
</mainClass>
</manifest>
</archive>
</configuration>
</plugin>

原贴于GitHub。

根据Averi Kitsch的回答并使用相同的springboot-helloworld示例,我能够在更新pom.xml后使其在本地工作。然而,就像它为您所做的一样,它只有在本地运行时才能工作,而当我将它部署到Google Cloud上时就会失败。问题是我使用的Dockerfile忽略了/target/lib目录下的所有jar文件,我需要将该目录复制到映像中。请注意,我使用的是Google Cloud Run,但我相信这应该适用于大多数使用Dockerfile的部署。

最后的结果是:

Dockerfile

FROM maven:3.8-jdk-11 as builder
WORKDIR /app
COPY pom.xml .
COPY src ./src
RUN mvn package -DskipTests
FROM adoptopenjdk/openjdk11:alpine-jre
COPY --from=builder /app/target/springboot-helloworld-*.jar /springboot-helloworld.jar
# IMPORTANT! - Copy the library jars to the production image!
COPY --from=builder /app/target/lib /lib
CMD ["java", "-Djava.security.egd=file:/dev/./urandom", "-jar", "/springboot-helloworld.jar"]

pom.xml

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.example.appengine</groupId>
<artifactId>springboot-helloworld</artifactId>
<version>0.0.1-SNAPSHOT</version>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.5.4</version>
<relativePath/>
</parent>
<properties>
<maven.compiler.target>11</maven.compiler.target>
<maven.compiler.source>11</maven.compiler.source>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-nio</artifactId>
<version>0.123.8</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>copy-dependencies</id>
<phase>prepare-package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>
${project.build.directory}/lib
</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<classpathPrefix>lib/</classpathPrefix>
<mainClass>
com.example.appengine.springboot.SpringbootApplication
</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</build>
</project>

gs://语法不是通用的;某些Google工具和服务(例如gsutil)支持它,但许多URL库都不知道它。

您可以更改为使用HTTP语法的一个GCS api,例如,

https://my-storage.storage.googlapis.com/path/to/file/image.jpg

请注意,上面的HTTP URL将需要身份验证,所以你可能会想要使用一个库,如google-cloud-java,它支持进行身份验证的GCS请求。

只是将存储桶放在您的服务器上使用本地路径见下文:https://medium.com/@antrixsh how-to-mount-cloud-storage-bucket-with-gcp-compute-engine-ba7c95ad5349

相关内容

  • 没有找到相关文章