博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
问题备忘: class path resource [xx] cannot be resolved to absolute file path because
阅读量:6165 次
发布时间:2019-06-21

本文共 2908 字,大约阅读时间需要 9 分钟。

问题描述

测试服务的版本是Spring Cloud Dalston.SR5 在Spring Boot中配置https时,代码如下:

@Bean    @ConditionalOnExpression("#{ ${self.https.enable:false}}")    public EmbeddedServletContainerFactory servletContainer() {        TomcatEmbeddedServletContainerFactory tomcat = new TomcatEmbeddedServletContainerFactory();        tomcat.addAdditionalTomcatConnectors(createSslConnector());        return tomcat;    }    private Connector createSslConnector() {        Connector connector = new Connector("org.apache.coyote.http11.Http11NioProtocol");        Http11NioProtocol protocol = (Http11NioProtocol) connector.getProtocolHandler();        ClassPathResource resource = new ClassPathResource(".keystore");        try {            connector.setScheme("https");            connector.setSecure(true);            connector.setPort(port);            protocol.setSSLEnabled(true);            protocol.setKeystoreFile(resource.getFile().getAbsolutePath());            protocol.setKeystorePass(keystorePass);            protocol.setKeyAlias(keyAlias);            protocol.setKeyPass(keyPass);        } catch (IOException e) {            e.printStackTrace();        }        return connector;    }复制代码

以上代码在我们idea中运行服务时,可以正常执行。但是将服务打包成可执行jar的包,以jar服务运行服务时,抛出以下错误:

java.io.FileNotFoundException: class path resource [.keystore] cannot be resolved to absolute file path because it does not reside in the file system: jar:file:/D:/tmp/interfacee-1.0-SNAPSHOT.jar!/BOOT-INF/classes!/.keystore        at org.springframework.util.ResourceUtils.getFile(ResourceUtils.java:215)        at org.springframework.core.io.AbstractFileResolvingResource.getFile(AbstractFileResolvingResource.java:53)复制代码

出现以上问题的原因: 打包后Spring无法使用resource.getFile()访问JAR中的路径的文件,必须使用resource.getInputStream()。

修正代码: 通过resource.getInputStream()获取证书文件,然后存储到临时文件,最后Http11NioProtocol 实例通过这个临时文件的路径传入值,这样此Http11NioProtocol 实例可以获取此证书文件。

private Connector createSslConnector() {      Connector connector = new Connector("org.apache.coyote.http11.Http11NioProtocol");      Http11NioProtocol protocol = (Http11NioProtocol) connector.getProtocolHandler();      ClassPathResource resource = new ClassPathResource(".keystore");      // 临时目录      String tempPath =System.getProperty("java.io.tmpdir") + System.currentTimeMillis()+".keystore";      File f = new File(tempPath);      logger.info(".keystore目录临时存储路径" + tempPath);      try {          // 将key的值转存到临时文件          IOUtils.copy(resource.getInputStream(),new FileOutputStream(f));          connector.setScheme("https");          connector.setSecure(true);          connector.setPort(port);          protocol.setSSLEnabled(true);          // 指向临时文件          protocol.setKeystoreFile(f.getAbsolutePath());          protocol.setKeystorePass(keystorePass);          protocol.setKeyAlias(keyAlias);          protocol.setKeyPass(keyPass);      } catch (IOException e) {          e.printStackTrace();      }      return connector;  }复制代码

转载地址:http://nluba.baihongyu.com/

你可能感兴趣的文章
欧几里德算法(辗转相除法)
查看>>
面试题1-----SVM和LR的异同
查看>>
MFC控件的SubclassDlgItem
查看>>
如何避免历史回退到登录页面
查看>>
《图解HTTP》1~53Page Web网络基础 HTTP协议 HTTP报文内的HTTP信息
查看>>
unix环境高级编程-高级IO(2)
查看>>
树莓派是如何免疫 Meltdown 和 Spectre 漏洞的
查看>>
雅虎瓦片地图切片问题
查看>>
HTML 邮件链接,超链接发邮件
查看>>
HDU 5524:Subtrees
查看>>
手机端userAgent
查看>>
pip安装Mysql-python报错EnvironmentError: mysql_config not found
查看>>
http协议组成(请求状态码)
查看>>
怎样成为一个高手观后感
查看>>
[转]VC预处理指令与宏定义的妙用
查看>>
MySql操作
查看>>
python 解析 XML文件
查看>>
MySQL 文件导入出错
查看>>
java相关
查看>>
由一个异常开始思考springmvc参数解析
查看>>