gpt4 book ai didi

java - 将资源文件捆绑到 ecs 集群上使用的 java app jar 文件中

转载 作者:太空宇宙 更新时间:2023-11-03 13:58:22 25 4
gpt4 key购买 nike

我们有一个应用程序使用来自 java 应用程序的 sasl/ssl 信任库。

该应用程序托管在 AWS 上的 ECS 集群上。在本地运行时,信任库存储在 java 应用程序的资源文件夹中,然后在需要引用它时使用此方法,这在本地非常有效

    public String getTruststoreFilepath() {
ClassLoader classLoader = getClass().getClassLoader();
File file = new File(classLoader.getResource("ts.truststore.jks").getFile());
return file.getPath();
}

当它部署在 AWS 上时,它会抛出异常Caused by: java.io.FileNotFoundException: file:/app.jar!/BOOT-INF/classes!/kafka.client.truststore.jks(没有这样的文件或目录)

有没有一种方法可以在部署时将信任库作为 jar 文件的一部分包含在内?或者我必须在运行 jar 文件的 ec2 上创建它吗?

谢谢

最佳答案

这是Kafka客户端的限制,可以查看GitHub issue .

Kafka 客户端要求 keystore 在文件系统上(它不理解类路径资源,也无法读取 jar 中的文件)。

KeyStore load() {
try (FileInputStream in = new FileInputStream(path)) {

So One possible workaround is to extract the keystore to a temporary file:

@SpringBootApplication
public class Kgh710Application {

public static void main(String[] args) throws Exception {
FileCopyUtils.copy(new ClassPathResource("client.ks").getInputStream(),
new FileOutputStream("/tmp/client.ks"));

SpringApplication.run(Kgh710Application.class, args);
}

}

spring.kafka.ssl.keystore-location=file:/tmp/client.ks

关于java - 将资源文件捆绑到 ecs 集群上使用的 java app jar 文件中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57889328/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com